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

api-platform
jvigneron
jvigneron commented Nov 28, 2019

Description
Remove any google fonts dependency from api-platform.

Example
Remove the google font stylesheet in line 8 of api-platform\core\src\Bridge\Symfony\Bundle\Resources\views\SwaggerUi\index.html.twig depending on a configuration variable?

Context
I'm working on an intranet application for a big company where any call to the fonts.googleapi.com CDN takes 30 seconds

OWMC
OWMC commented May 26, 2021

Expected Behaviour
When I have a custom setting in WP,
the field names should be listed under the group names in the WPGraphQL IDE,
so that I can query those fields.

Current Behaviour
If the custom setting group option name contains an underscore,
the fields belonging to that group do not show up under the group name in the WPGraphQL IDE,
and I cannot query those fields (unless

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

patrick91
patrick91 commented Jun 3, 2021

This example:

import strawberry

from typing import List

from decimal import Decimal

def get_age(root) -> int:
    return root # this will be 123

@strawberry.type
class User:    
    age: int = strawberry.field(resolver=get_age)

def get_users(name: Decimal):
  return [123]


@strawberry.type
class Query:
   users: List[User] = strawberry.field(get_users)


schema 

Created by Facebook

Released 2015

Organization
graphql
Website
graphql.org
Wikipedia
Wikipedia

Related Topics

api rest