Genql vs graphql-zeus

  1. genql returned object is type safe
  1. genql automatically extracts your arguments to variables, zeus instead embeds them in the query, making GraphQL parsing in the server slower and sometimes causing parsing errors (in case the parser gets confused with characters inside a string argument)
  1. genql is more opinionated, does not support directives or aliases
  1. genql has no dependencies (not even graphql package)
Share