Skip to content
#

graphql-client

graphql logo

GraphQL is a data query language developed by Facebook. It provides an alternative to REST and ad-hoc webservice architectures. It allows clients to define the structure of the data required, and exactly the same structure of the data is returned from the server. It is a strongly typed runtime which allows clients to dictate what data is needed.

Here are 485 public repositories matching this topic...

omainegra
omainegra commented Jul 23, 2020

Is your feature request related to a problem? Please describe.

  • Many projects include a JS target. Supporting JS targets will increase Apollo’s viability when being considered for multi-platform projects.
  • It is not straightforward to use Apollo in projects that include a JS target. This is due to the apollo-runtme-kotlin artifact, which can’t be used in commonMain. One workaround is
hotchocolate
graphql-kotlin
dariuszkuc
dariuszkuc commented Sep 27, 2019

Is your feature request related to a problem? Please describe.
Currently we don't have any integration tests that verify that generated federated GraphQL schemas are valid with the Apollo Gateway.

Describe the solution you'd like
One of the PR hooks (Github Action?) start up the example federation apps (including gateway) and verify federation works.

Additional context
Related

apollo-angular
anthowm
anthowm commented Jan 7, 2019

I do not know if you can add a section on how to upload a file using the client with angle. I think it would be helpful for other developers to find the answer faster.
There are the examples for the server and apollo client
Apollo Server:
https://github.com/jaydenseric/apollo-upload-examples/blob/master/api/resolvers.mjs
Apollo Angular Client
https://github.com/mrdulin/angular-apollo-starter/

Gerharddc
Gerharddc commented Jan 21, 2019

Do you want to request a feature or report a bug?
Bug

What is the current behavior?
On most of my React-Native screens that contain more than one Query, only the first one ever gets loaded and rest are stuck on loading forever. I can confirm from AppSync logs that no network requests are ever made for those queries. They also never return an error and are simply stuck. Using the A

ndanielsen
ndanielsen commented Sep 4, 2019

Loving this project.

I feel like this project would benefit from a short quick start tutorial that demonstrate common methods such as:

Create item

    mutation = Operation(schema.Mutation)  # note 'schema.'
    mutation.create_item(input=dict(id="23432")).__fields__()

List items with filter

    op = Operation(schema.Query)  # note 'schema.'
    op.list_it
morpheus-graphql

Created by Facebook

Released 2015

Organization
graphql
Website
graphql.org
Wikipedia
Wikipedia

Related Topics

api rest