Giter Site home page Giter Site logo

graphql_compose-js-to-ts's Introduction

graphql_compose-js-to-ts

  • Installation
  • GraphQL Simple query
  • GraphQL Query Fragment
  • GraphQL Alias Example
  • GraphQL Query Variables

Installation

init server

npm install
npm run dev

GraphQL Simple query

http://localhost:4001/

{
  staffs: StaffMany(filter: {}) {
    id
    userId
    status
    user{
      id
      firstName
      lastName
    }
  },

  staff: StaffOne(id:2222 ){
    staffId: id
    status
    user{
      userId: id
      firstName
      lastName
    }
  },

  users: UserMany(filter: {}){
    id
    firstName
    lastName
  },

  user: UserOne(id: 1234){
    id
    firstName
    lastName
  }
}


GraphQL Query Fragment

{
  staffs: StaffMany(filter: {}) {
    id
    userId
    status
    user{
      ...fullUser
    }
  },

  staff: StaffOne(id:2222 ){
    id
    status
    user{
      ...fullUser
    }
  },

  users: UserMany(filter: {}){
    ...fullUser
  },

  user: UserOne(id: 1234){
    ...fullUser
  }
}

fragment fullUser on User {
  id
  firstName
  lastName
}


GraphQL Alias Example

{
  staff: StaffOne(id: 2222){
    staffId: id
    staffStatus: status
    userInformation: user {
      ...fullUser
    }
  }
}


fragment fullUser on User {
  id
  firstName
  lastName
}


GraphQL Query Variables

query

query Staff($id: Int!){
  StaffOne(id: $id){
    id
  	userId
    status
    user {
      ...fullUser
    }
  }
}


fragment fullUser on User {
  id
  firstName
  lastName
}

query variables

{
  "id": 2222
}

graphql_compose-js-to-ts's People

Contributors

wudtichaikarun avatar

Watchers

 avatar

Forkers

kazekunz mosza16

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.