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 370 public repositories matching this topic...

hotchocolate
apollo-angular
graphql-kotlin
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

galales
galales commented Aug 18, 2020

This is related to issue #552 . The previous PR solved most of the mismatches, but in the current snapshot (0.9.1+20-40e9f3a2-SNAPSHOT) arguments in root level operations still do not match.

Example

object Operations {
  @GQLDescription("query root")
  case class query_root(
      posts: PostsArgs => zio.UIO[List[Post]]
  )
}

case class Query_rootPostsArgs(
    ...
)

I

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
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.