Giter VIP home page Giter VIP logo

graphql-challenge's Introduction

How to use:

First time only, type "npm i" in the terminal to install the dependencies
Type "npm run dev" to start the server
In your browser, navigate to http://localhost:5000/graphql to access the graphiql interface

Use the the following queries to access the data you want

To list all the apps:

{
    apps {
      id
      name
    }
}

To query a single app:

{
    app(id: "id-goes-here") {
      id
      name
    }
}

To list all the stages:

{
    stages {
      id
      name
    }
}

To query a single stage:

{
    stage(id: "id-goes-here") {
      id
      name
    }
}

To search the stages by name:

{
    stage(name: "name-goes-here") {
      id
      name
    }
}

To list all of the events:

{
    events {
      id
      appId
      stageId
      name
      description
      image
      startsAt
      endsAt
   }
}

To query a single event:

{
    event(id: "id-goes-here") {
      id
      appId
      stageId
      name
      description
      image
      startsAt
      endsAt
    }
}

To search the events by name:

{
    event(name: "name-goes-here") {
      id
      appId
      stageId
      name
      description
      image
      startsAt
      endsAt
    }
}

To query the events that occur between two dates:

{
    events(startsAt: integer, endsAt: integer) {
      id
      appId
      stageId
      name
      description
      image
      startsAt
      endsAt
    }
}

To list all of the events in an app:

{
    app(id: "id-goes-here") {
      id
      events {
        id
        appId
        stageId
        name
        description
        image
        startsAt
        endsAt
      }
    }
}

To list all of the stages in an app:

{
    app(id: "id-goes-here") {
      id
      stages {
        id
        name
      }
    }
}

To get the stage in an event:

{
    event(id: "id-goes-here") {
      name
      stage {
        id
        name
      }
    }
}

To list the events at a stage:

{
    stage(id: "id-goes-here") {
      id
      name
      events {
        name
      }
    }
}

graphql-challenge's People

Contributors

arinramer avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.