Hi Moralis community! I have been seeing this error in the GraphQL console: āServer cannot be reachedā but my server definitely works because I can log in / log out and run cloud functions.
Any idea what might be going on? I have included my code from the console below and its output.
The input of my GraphQL is this:
type Contract {
id: ID!
date: String!
owner: Owner!
skills: [skills]
}
type skill {
id: ID!
name: Name!
verification: Boolean!
}
# Write your query or mutation here
The output of my GraphQL shows this:
{
"error": "Unexpected token < in JSON at position 0"
}