-
My apollo.config.js is
```
module.exports = {
client: {
service: {
name: 'Public API',
url: 'DoesNotMatter',
skipSSLValidation: true
}
}
}
```
and when I run…
-
* GraphQL 是一种可以替代REST的API对于API查询方式的思考
* Restful的api,就是定义了一系列用户可以使用的api, 客户端可以通过/book/的方式检索资源,而这个被检索到的资源和获取资源的方式是耦合的,也是有服务端定义的
* 意思是一个restful的api,定义了一种endpoint的返回
* 而使用GraphQL, 服务端仅定义数据的类型,这是对该资源的描述…
-
### Is your feature request related to a problem? Please describe.
Similar to open API I recommend that the the code generator should support a mode or option where it generates the Object types in t…
-
I'm using Apollo Server 2 and Express.js vanilla (with `apollo-server-express`).
Everything works good also with **Subscriptions** except the **Express session** mechanism.
**The problem:**
I…
-
## Intended outcome:
When having an Apollo Error thrown via GraphQL, the React ssr treewalker should just take the Error and proceed and pass error to the component.
## Actual outcome:
When we h…
-
**Describe the bug**
**To Reproduce**
Steps to reproduce the behavior:
1. My GraphQL schema:
```graphql
# Put your schema here
type Query {
test(customArg: String): String
}
``…
-
I am reviving #1262 as I have an use case that is related to that discussion:
> Right now directives are purely a feature of the GraphQL language and IDL, so a schema not created using IDL definiti…
-
**Describe the bug**
Fragments are displaying as empty in queries
**To Reproduce**
1. Make this query to https://demo.saleor.io/graphql/
```js
const {
result,
loading,
error,
} = useQ…
-
Is it only possible to use the if="$odd" template selector property for Vue?
Can't seem to get other "if" statements to work. For instance, my example code:
`
…
-
i was trying to do something like this:-
const {schema} = module;
Module is a graphQLModule, in which typedefs has @key attribute (Apollo Federation way).
At this statement it throws error:-…