enfr_extension.extension.graphqls 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. # extend type Query {
  2. # route(path: String!): NodeInterface
  3. # }
  4. extend type Query {
  5. allmapitems: [MapItemInterface]
  6. }
  7. extend type Query {
  8. mapitems(ids: [Int]): [MapItemInterface]
  9. }
  10. extend type Query {
  11. mapitem(id: Int!): MapItemInterface
  12. }
  13. extend type Query {
  14. allmapitemsof(familyId: Int!): [MapItemInterface]
  15. }
  16. extend type Query {
  17. texts: [TextInterface]
  18. }
  19. extend type Query {
  20. texte(id: Int!): TextInterface
  21. }
  22. extend type Query {
  23. textsdepart: [Textref]
  24. }
  25. extend type Query {
  26. textref(id: Int!): Textref
  27. }
  28. extend type Query {
  29. textsref(ids: [Int]): [Textref]
  30. }
  31. extend type Query {
  32. textprod(id: Int!): Textprod
  33. }
  34. extend type Query {
  35. textsprod(ids: [Int]): [Textprod]
  36. }
  37. extend type Query {
  38. allcreations: [Creation]
  39. }
  40. extend type Query {
  41. creations(ids: [Int]): [Creation]
  42. }
  43. extend type Query {
  44. creation(id: Int!): Creation
  45. }
  46. extend type Query {
  47. allstatics: [Static]
  48. }
  49. extend type Query {
  50. burgerstatics: [Static]
  51. }
  52. extend type Query {
  53. statics(ids: [Int]): [Static]
  54. }
  55. extend type Query {
  56. static(id: Int!): Static
  57. }
  58. extend type Query {
  59. famille(id: Int!): Taxoterm
  60. }
  61. extend type Query {
  62. alltags: [Taxoterm]
  63. }
  64. # extend type Query {
  65. # famillytags(famillyid: Int!): [Taxoterm]
  66. # }
  67. extend type Query {
  68. tag(id: Int!): Taxoterm
  69. }
  70. extend type Query {
  71. tagprod(id: Int!): Taxoterm
  72. }
  73. extend type Query {
  74. auteur(id: Int!): Auteur
  75. }
  76. extend type Query {
  77. allauteurs: [Auteur]
  78. }