-
Updated
Jul 8, 2022 - PHP
GraphQL
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 463 public repositories matching this topic...
A while back I introduced #871 which gave the ability to provide a custom edge for the @belongsToMany directive. This, in turn, made it possible include pivot custom data within the edge.
I'm realizing now that the @rename directive wasn't taken into account for handling the custom edge data. This should be a very simple fix which I'm happy to tackle. I just wanted to make an issue so I don
-
Updated
Jul 8, 2022 - PHP
-
Updated
Jul 8, 2022 - PHP
-
Updated
Feb 13, 2022 - PHP
-
Updated
Jun 24, 2022 - PHP
-
Updated
Jul 5, 2022 - PHP
-
Updated
Oct 27, 2021 - PHP
-
Updated
Jul 8, 2022 - PHP
WP-GraphQL-Woocommerce can't detect the product categories with different term_id and term_taxonomy_id IDs in wp_term_taxonomy table.
By default, the term_id and term_taxonomy_id have the same ID value in wp_term_taxonomy table.
For example:
term_taxonomy
| term_taxonomy_id | term_id | taxonomy |
|---|---|---|
| 1 | 1 | product_cat |
Updates the requirements on doctrine/annotations to permit the latest version.
See this ticket as a main reference and for discussions: wp-graphql/wp-graphql#1535
WordPress VIP has pretty high coding standards and everyone who will work with VIP in the future will face the same problems as our team right now. It would be great if we could get coding standards up and running with VIP's standards.
Ideally we could setup PHP_Codesniffer with all
-
Updated
Oct 22, 2020 - PHP
-
Updated
May 17, 2021 - PHP
The Settings accepts several options which modify permalinks:
- Single endpoint path
- Persisted query base slug
- Other similar ones
We must validate that the input values are correct. Things to watch out for:
- Unsupported chars:
!@#$%*()+='"... - Too long:
thispathistoolongthatthebaseslugcantprocessit - Many instances of
//together:/graphql-query/base//path/
-
Updated
Jun 1, 2022 - PHP
-
Updated
Jun 1, 2022 - PHP
-
Updated
May 16, 2022 - PHP
NodePrinter tests
-
Updated
Dec 29, 2021 - PHP
-
Updated
Sep 18, 2017 - PHP
-
Updated
Feb 16, 2022 - PHP
-
Updated
Jun 19, 2022 - PHP
The Settings accepts several options which modify permalinks:
- Single endpoint path
- Persisted query base slug
- Other similar ones
We must validate that the input values are correct. Things to watch out for:
- Unsupported chars:
!@#$%*()+='"... - Too long:
thispathistoolongthatthebaseslugcantprocessit - Many instances of
//together:/graphql-query/base//path/
-
Updated
Aug 16, 2020 - PHP
-
Updated
Jul 8, 2022 - PHP
-
Updated
May 22, 2022 - PHP
Created by Facebook
Released 2015
- Organization
- graphql
- Website
- graphql.org
- Wikipedia
- Wikipedia
As a user, I would like to be able to query a comment by database id.
Currently, the
commentquery doesn't allow for different id types (such as database id), but many other "single node" entry fields in the Graph support anidTypefield, such as:{ post( id: 123, idType: DATABASE_ID ) { __typename, id } contentNode( id: 123 idType: DATABASE_ID ) { __typename, id } }