ouatt_extension.extension.graphqls 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. allentites: [Entite]
  15. }
  16. extend type Query {
  17. entites(ids: [Int]): [Entite]
  18. }
  19. extend type Query {
  20. entite(id: Int!): Entite
  21. }
  22. extend type Query {
  23. allstatics: [Static]
  24. }
  25. extend type Query {
  26. statics(ids: [Int]): [Static]
  27. }
  28. extend type Query {
  29. static(id: Int!): Static
  30. }
  31. extend type Query {
  32. allbesoins: [Besoin]
  33. }
  34. extend type Query {
  35. besoins(ids: [Int]): [Besoin]
  36. }
  37. extend type Query {
  38. besoin(id: Int!): Besoin
  39. }
  40. extend type Query {
  41. allreponses: [Reponse]
  42. }
  43. extend type Query {
  44. reponses(ids: [Int]): [Reponse]
  45. }
  46. extend type Query {
  47. reponse(id: Int!): Reponse
  48. }
  49. extend type Query {
  50. user(id: Int!): User
  51. }
  52. extend type Query {
  53. allgroups: [Group]
  54. }
  55. extend type Query {
  56. groups(ids: [Int]): [Group]
  57. }
  58. extend type Query {
  59. group(id: Int!): Group
  60. }
  61. extend type Query {
  62. entitydef(type: String, bundle: String): EntityDefinition
  63. }