graphcool Questions
4
Solved
I'm trying to set up a graphcool subscription / websockets as per this tutorial at How To GraphQL but I'm getting the following message:
WebSocket connection to
'wss://subscriptions.graph.cool/...
2
Solved
Im using Graphcool but this may be a general GraphQL question. Is there a way to make one of two fields required?
For instance say I have a Post type. Posts must be attached to either a Group or ...
3
I am trying to run this command with graphcool:
graphcool-framework local up
And I am getting this error from Docker,
docker could not find plugin bridge in v1 plugin registry: plugin not foun...
1
I am trying to set up Auth0's universal login with my Graphcool, Apollo and React app. My site is a SPA statically hosted with Netlify.
I am using Graphcool's official Auth0 template: https://git...
2
Solved
I am using Apollo Client for the frontend and Graphcool for the backend. There are two queries firstQuery and secondQuery that I want them to be called in sequence when the page opens. Here is the ...
Manysided asked 16/3, 2018 at 9:49
2
Solved
I am using react-apollo on the front-end and graphcool on the backend. I have a mutation that creates a tutorial like so:
const CREATE_TUTORIAL_MUTATION = gql`
mutation CreateTutorialMutation(
$...
1
Solved
Ive been uploading image files to an API (Graphcool) with this, and everything was working fine:
fileUpload(file) {
let data = new FormData();
data.append('data', file);
axios
.post(`https:/...
0
I have a model named as Student and want to filter out those students who have equal marks in physics and chemistry.The student schema is as follows.
type Student @model {
name: String!
physicsM...
2
Solved
I want to parse the graph Cool service in android. I am unable to parse the data.
here is the URL:
https://api.graph.cool/simple/v1/cj8dyjr0144dk33b7pz
have to parse this service
mutation {...
1
Solved
Using a GraphCool backend, is there a way to have conditional filter in a query?
let's say I have a query like this:
query ($first: Int, $skip: Int, $favorited: Boolean) {
allPhotos (
first: $f...
Doublequick asked 31/10, 2017 at 5:24
2
Solved
I would like to save some Slack messages to a GraphQL backend. I can use the Slack API and what they call "Slack App Commands" so everytime a message is send to my Slack channel, Slack will automat...
Tertia asked 28/8, 2017 at 14:7
1
Solved
I have the following GraphQL schema. It has Books and Authors with a many to many relationship. How do I create a new Book mutation for an existing Author?
schema
type Author implements Node {
...
1
Solved
Hi I am trying to write data on my https://www.graph.cool/ db with a mutation.
My project is a React web-app and I am using Apollo as graphql client and graphql-tag npm package as template literal ...
Amerind asked 9/2, 2017 at 9:56
1
Solved
I'm using Graph.cool graphql as a service and am wondering how to do a mass update to the collection, similar to a SQL update.
In my case I need to update the suffix of a url, in the imageUrl colu...
2
Solved
I'm sure it's a simple thing to do, but I couldn't find anything in either GraphQL's doc or Graphcool's.
Say I have an entity with this schema (new GraphQL user, sorry if I make mistake in the sch...
1
© 2022 - 2024 — McMap. All rights reserved.