serverless-appsync-offline icon indicating copy to clipboard operation
serverless-appsync-offline copied to clipboard

Unable to make it work with python and typescript project.

Open chaitanya11 opened this issue 5 years ago • 0 comments

When trying to use this plugin with python or typescript projects, i am getting and error like this

{
  "errors": [
    {
      "message": "[object Object]",
      "locations": [
        {
          "line": 2,
          "column": 3
        }
      ],
      "path": [
        "getSkillsInfo"
      ]
    }
  ],
  "data": {
    "getSkillsInfo": null
  }
}

issued query is

query getSkillsInfo($content: String = "need help with activation") {
  getSkillsInfo(content: $content) {
    content
    task_id
    timestamp
  }
}

chaitanya11 avatar Jun 21 '19 07:06 chaitanya11