book icon indicating copy to clipboard operation
book copied to clipboard

Gql document naming pattern

Open lorensr opened this issue 7 years ago • 0 comments

Atm we have:

  • all caps
  • end with the operation, eg STARS_QUERY, FAVORITE_MUTATION
const DELETE_REVIEW_MUTATION = gql`
  mutation DeleteReview($id: ObjID!) {
    removeReview(id: $id)
  }
`

What do we think about dropping the operation from the end?

lorensr avatar Sep 17 '18 21:09 lorensr