fixed graphql linked_materials entity_reference translation
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
extend type Query {
|
||||
route(path: String!): NodeInterface
|
||||
route(path: String!, lang: String): NodeInterface
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
materiau(id: Int!): Materiau
|
||||
materiau(id: Int!, lang: String): Materiau
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
materiaux(ids: [Int]): [Materiau]
|
||||
materiaux(ids: [Int], lang: String): [Materiau]
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
@@ -15,35 +15,35 @@ extend type Query {
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
article(id: Int!): Article
|
||||
article(id: Int!, lang: String): Article
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
thematique(id: Int!): Thematique
|
||||
thematique(id: Int!, lang: String): Thematique
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
showroom(id: Int!): Showroom
|
||||
showroom(id: Int!, lang: String): Showroom
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
tag(id: Int!): Tag
|
||||
tag(id: Int!, lang: String): Tag
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
thesaurus(id: Int!): Thesaurus
|
||||
thesaurus(id: Int!, lang: String): Thesaurus
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
company(id: Int!): Company
|
||||
company(id: Int!, lang: String): Company
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
product(id: Int!): Product
|
||||
product(id: Int!, lang: String): Product
|
||||
}
|
||||
|
||||
extend type Query {
|
||||
products(ids: [Int]): [Product]
|
||||
products(ids: [Int], lang: String): [Product]
|
||||
}
|
||||
|
||||
# extend type Query {
|
||||
|
Reference in New Issue
Block a user