Skip to content
#

graphql-server

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 1,178 public repositories matching this topic...

altair
andbar-ru
andbar-ru commented Nov 25, 2021

Is your feature request related to a problem? Please describe.
In my opinion, it would be nice to have an option/flag to allow users to turn off line numbers. I am used to launch Altair with in not full-screen mode and have 3 columns: request, result and docs. Line numbers generally is useless and occupy valuable horizontal space.

Describe the solution you'd like
Checkbox "Show line n

hotchocolate
jasonbahl
jasonbahl commented May 27, 2022

As a user, I would like to be able to query a comment by database id.

Currently, the comment query doesn't allow for different id types (such as database id), but many other "single node" entry fields in the Graph support an idType field, such as:

{
  post( id: 123, idType: DATABASE_ID ) { __typename, id }
  contentNode( id: 123 idType: DATABASE_ID ) { __typename, id }
}
Good First Issue ObjectType: Comment Component: Query
pg_graphql
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

type: enhancement good first issue module: generator
ghostdogpr
ghostdogpr commented Jun 29, 2022

The generated code doesn't compile when a field is named _ (example: https://gql.waveapps.com/graphql/public). It's escaped with backticks but we get:

[error] 7642 |    def `_`
[error]      |        ^
[error]      |        wildcard invalid as backquoted identifier

We need to escape this one another way.

bug good first issue client tools

Created by Facebook

Released 2015

Organization
graphql
Website
graphql.org
Wikipedia
Wikipedia

Related Topics

api rest