enfr_extension.extension.graphqls 491 B

1234567891011121314151617181920212223242526272829303132333435
  1. # extend type Query {
  2. # route(path: String!): NodeInterface
  3. # }
  4. extend type Query {
  5. textsdepart: [Textref]
  6. }
  7. extend type Query {
  8. textref(id: Int!): Textref
  9. }
  10. extend type Query {
  11. textsref(ids: [Int]): [Textref]
  12. }
  13. extend type Query {
  14. textprod(id: Int!): Textprod
  15. }
  16. extend type Query {
  17. textsprod(ids: [Int]): [Textprod]
  18. }
  19. extend type Query {
  20. famille(id: Int!): Taxoterm
  21. }
  22. extend type Query {
  23. tag(id: Int!): Taxoterm
  24. }
  25. extend type Query {
  26. tagprod(id: Int!): Taxoterm
  27. }