ouatt_extension.extension.graphqls 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. # extend type Query {
  2. # route(path: String!): NodeInterface
  3. # }
  4. extend type Query {
  5. allconcernements: [Concernement]
  6. }
  7. extend type Query {
  8. concernements(ids: [Int]): [Concernement]
  9. }
  10. extend type Query {
  11. concernement(id: Int!): Concernement
  12. }
  13. extend type Query {
  14. concernementrevisions(id: Int!): [Concernement]
  15. }
  16. extend type Query {
  17. allentites: [Entite]
  18. }
  19. extend type Query {
  20. entites(ids: [Int]): [Entite]
  21. }
  22. extend type Query {
  23. entite(id: Int!): Entite
  24. }
  25. extend type Query {
  26. allstatics: [Static]
  27. }
  28. extend type Query {
  29. promotedstatics: [Static]
  30. }
  31. extend type Query {
  32. statics(ids: [Int]): [Static]
  33. }
  34. extend type Query {
  35. static(id: Int!): Static
  36. }
  37. extend type Query {
  38. allbesoins: [Besoin]
  39. }
  40. extend type Query {
  41. besoins(ids: [Int]): [Besoin]
  42. }
  43. extend type Query {
  44. besoin(id: Int!): Besoin
  45. }
  46. extend type Query {
  47. allreponses: [Reponse]
  48. }
  49. extend type Query {
  50. reponses(ids: [Int]): [Reponse]
  51. }
  52. extend type Query {
  53. reponse(id: Int!): Reponse
  54. }
  55. extend type Query {
  56. alldoleances: [Doleance]
  57. }
  58. extend type Query {
  59. doleances(ids: [Int]): [Doleance]
  60. }
  61. extend type Query {
  62. doleance(id: Int!): Doleance
  63. }
  64. extend type Query {
  65. user(id: Int!): User
  66. }
  67. extend type Query {
  68. allgroups: [Group]
  69. }
  70. extend type Query {
  71. groups(ids: [Int]): [Group]
  72. }
  73. extend type Query {
  74. group(id: Int!): Group
  75. }
  76. extend type Query {
  77. entitydef(type: String, bundle: String): EntityDefinition
  78. }