ouatt_extension.extension.graphqls 662 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. # alltags: [Taxoterm]
  33. # }
  34. # extend type Query {
  35. # tag(id: Int!): Taxoterm
  36. # }