updated shell scripts to use binaries
This commit is contained in:
@ -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" })
|
||||
|
||||
|
Reference in New Issue
Block a user