guide icon indicating copy to clipboard operation
guide copied to clipboard

Adding client field to existing type in local mutation schema?

Open lorensr opened this issue 7 years ago • 0 comments

  typeDefs: `
    type Query {
      loginInProgress: Boolean
    }
    type Mutation {
      setSectionScroll(id: String!, scrollY: Int!): Boolean
    }
  `,

adding

    type Section {
      scrollY
    }

doesn't work:

image

lorensr avatar Oct 01 '18 04:10 lorensr