The Wayback Machine - https://web.archive.org/web/20200523161915/https://github.com/topics/graphql-client
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 339 public repositories matching this topic...

altair
travigd
travigd commented Mar 29, 2020

Is your feature request related to a problem? Please describe.
Sometimes I have related models and I mention them in descriptions. This occurs fairly frequently when I have related models.

For example, I might have a separate Account and Profile types, and the description for Profile might be something like

Public-facing information about an `Account`.

It'd be awesome f

hotchocolate
PascalSenn
PascalSenn commented Mar 17, 2020

We just need a piece of documentation because there is literally no documentation about directive locations except from the spec. The spec is not easy to read. Something like this would make sense

directive @field_definition on FIELD_DEFINITION
directive @argument_definition on ARGUMENT_DEFINITION
directive @object on OBJECT
directive @interface on INTERFACE

interface Foo @inter
rpinna
rpinna commented Feb 16, 2020

Question:

The documentation states:

aws-appsync version Required React Native Version
2.x.x >= 0.60
1.x.x <= 0.59

but 3.x.x is shipping. Is 3.x.x or 2.x.x preferred?
Is there a post or a set of release notes that describe the difference between 2.x.x and 3.x.x?

Environment:

apollo-client 2.6.8, React Native, Cognito, RN 61, Expo SDK 36

using Authorization and Su

rlhk
rlhk commented Nov 17, 2018

Developing on the default config with localhost:3000 is fine.

However when I tried to test the local dev version from a device in the local network, say 192.169.110.1:3000, one of the client requests is still pointing to localhost:3000. Specifically, it's http://localhost:3000/__meteor__/dynamic-import/fetch, which makes the app unresponsive/unable to login from devices other than localhost.

aldeed
aldeed commented Jan 30, 2020

Type: minor

Describe the bug
After adding a new account address, the screen goes blank you appear to be logged out, but when you refresh the page, the address is there and you are still logged in.

To Reproduce
Steps to reproduce the behavior:

  1. Go to storefront
  2. Log in
  3. Click user name in upper right > Profile
  4. Add a new address.
  5. When you submit the form, see the
welf
welf commented Oct 13, 2017

First of all thank you very much for your awesome package! ))

In Json.Decode module there is a function lazy which helps with building recursive encoders. Please define in your module GraphQL.Request.Builder the same function or explicitly explain in module docs how to deal with recursive decoding and encoding, because it confuses inexperienced Elm developers.

An example

After

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

Created by Facebook

Released 2015

Organization
graphql
Website
graphql.org
Wikipedia
Wikipedia

Related Topics

api rest
You can’t perform that action at this time.