guide
guide copied to clipboard
Adding client field to existing type in local mutation schema?
typeDefs: `
type Query {
loginInProgress: Boolean
}
type Mutation {
setSectionScroll(id: String!, scrollY: Int!): Boolean
}
`,
adding
type Section {
scrollY
}
doesn't work:
