updated shell scripts to use binaries

This commit is contained in:
2023-04-04 20:02:06 +02:00
parent 62c527acf8
commit 14761fa3e5
6 changed files with 21 additions and 37 deletions

View File

@ -39,7 +39,7 @@ type Query {
getUser(
username: String!
): User @bb_resolver(_type: select, _object: User, _filter: { username: { _eq: "$username" } })
}
type Mutation {
@ -64,8 +64,8 @@ type Mutation {
createTask(
title: String!,
description: String,
completed: Boolean!, # default not implemented yet, this needs to be added as it's non-nullable
list: List! # list needs to be specified as it's non-nullable
completed: Boolean!, # default not implemented yet, this needs to be added as it's non-nullable
list: List! # list needs to be specified as it's non-nullable
user: User! # username needs to be specified as it's non-nullable
): Task @bb_resolver(_type: insert, _object: Task, _fields: { title: "$title", description: "$description", completed: "$completed", list: "$list", user: "$user" })