atulmy / gql-query-builder

🔧 Simple GraphQL Query Builder
https://npmjs.com/package/gql-query-builder
MIT License
396 stars 43 forks source link

Make it possible to request a subscription with empty fields #90

Open pascal-klesse opened 10 months ago

pascal-klesse commented 10 months ago

This changes will made it possible to request a subscription with return type string and without fields.

Before:

subscription {
   events {
  }
}

After:

subscription {
   events
}