Custom Directive Issue (Documentation Related)

same is true for the following Mutations:

type Mutation {
  addTwitterUser: TwitterUser @custom(http:{
    url: "http://mydomain.com/api"
    method: "GET"
  })
  updateTwitterUser: TwitterUser @custom(http:{
    url: "http://mydomain.com/api"
    method: "GET"
  })
  deleteTwitterUser: TwitterUser @custom(http:{
    url: "http://mydomain.com/api"
    method: "GET"
  })
}

There needs to be a check on the reserved words that if the type has the @remote directive then the get* and query* queries are not reserved and the add*, update*, and delete* mutations are not reserved

2 Likes