8 lines
135 B
GraphQL
8 lines
135 B
GraphQL
|
extend type Query {
|
||
|
materiau(id: Int!): Materiau
|
||
|
}
|
||
|
|
||
|
extend type Mutation {
|
||
|
createMateriau(data: MateriauInput): MateriauResponse
|
||
|
}
|