the description for this gist
val IdArg = Argument("id", IntType) | |
val NameArg = Argument("name", StringType) | |
val Mutation = ObjectType("Mutation", fields[ShopRepository, Unit]( | |
Field("addCategory", CategoryType, | |
arguments = IdArg :: NameArg :: Nil, | |
resolve = c => c.ctx.addCategory(c.arg(IdArg), c.arg(NameArg)) | |
) | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment