Skip to content

cikay/graphql_comparison_operators

Repository files navigation

Build

docker-compose build

Run

docker-compose up

Go to http://0.0.0.0:8000/graphql

Create a task

mutation{
  createTask(
    task: {
      content: "first task"
    }
  ){
    id
  }
}

Query tasks

{
  tasks(
    query: {
      createdAt: {
      	gt: "2023-06-19T12:21:35.640+00:00"
    	}
    }
  ){
    id
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published