materio_extension.extension.graphqls 370 B

123456789101112131415161718192021222324252627
  1. extend type Query {
  2. materiau(id: Int!): Materiau
  3. }
  4. extend type Query {
  5. materiaux(ids: [Int]): [Materiau]
  6. }
  7. extend type Query {
  8. article(id: Int!): Article
  9. }
  10. extend type Query {
  11. showroom(id: Int!): Showroom
  12. }
  13. extend type Query {
  14. tag(id: Int!): Tag
  15. }
  16. extend type Query {
  17. thesaurus(id: Int!): Thesaurus
  18. }
  19. extend type Query {
  20. company(id: Int!): Company
  21. }