materio_extension.extension.graphqls 311 B

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