materio-d9/web/modules/custom/materio_graphql/graphql/materio_extension.extension...

60 lines
1.0 KiB
GraphQL
Raw Normal View History

extend type Query {
route(path: String!, lang: String): NodeInterface
}
extend type Query {
materiau(id: Int!, lang: String): Materiau
}
extend type Query {
materiaux(ids: [Int], lang: String): [Materiau]
}
extend type Query {
2021-03-03 17:55:32 +01:00
searchresults(ids: [Int], lang: String): [SearchResultInterface]
}
extend type Query {
searchresult(id: Int!, lang: String): SearchResultInterface
}
extend type Query {
article(id: Int!, lang: String): Article
}
2020-12-16 16:53:07 +01:00
2020-12-25 17:37:15 +01:00
extend type Query {
thematique(id: Int!, lang: String): Thematique
2020-12-25 17:37:15 +01:00
}
2020-12-16 16:53:07 +01:00
extend type Query {
showroom(id: Int!, lang: String): Showroom
2020-12-16 16:53:07 +01:00
}
extend type Query {
tag(id: Int!, lang: String): Tag
2020-12-16 16:53:07 +01:00
}
extend type Query {
thesaurus(id: Int!, lang: String): Thesaurus
2020-12-16 16:53:07 +01:00
}
extend type Query {
company(id: Int!, lang: String): Company
}
extend type Query {
product(id: Int!, lang: String): Product
}
extend type Query {
products(ids: [Int], lang: String): [Product]
}
# extend type Query {
# variation(id: Int!): Variation
# }
#
# extend type Query {
# variations(id: [Int]): Variation
# }