Giter Club home page Giter Club logo

Comments (4)

keski avatar keski commented on August 20, 2024

I went with naming the types according to the spec (i.e. DataToCreateX), for the naming of the generated input types.

@rcapshaw

from woo.sh.

keski avatar keski commented on August 20, 2024

The code should now cover cases involving wrapped fields and cases where loops may occur. For now, test cases should cover:

type A {
   b1: B
   b2: B!
   b3: [B]
   b4: [B!]
   b5: [B]!
   b6: [B!]!
}

type B {
   a: A
}

@rcapshaw

from woo.sh.

keski avatar keski commented on August 20, 2024

Now covers DataToCreateYOfX as stated in 5.1 Creating an Object of the spec. Example:

type Person {
  id: ID!
  name: String
  age: Int
  pet: [Dog]
}

type Dog {
  id: ID!
  name: String
}

input DataToConnectPetOfPerson {
  connect: ID
  create: DataToCreateDog
}

input DataToCreateDog {
  id: ID!
  name: String
}

input DataToCreatePerson {
  id: ID!
  name: String
  age: Int
  pet: [DataToConnectPetOfPerson]
}

type Mutation {
  createPerson(data: DataToCreatePerson): Person
  createDog(data: DataToCreateDog): Dog
}

from woo.sh.

keski avatar keski commented on August 20, 2024

Moving the tasks related to tests to a separate issue (#23)

from woo.sh.

Related Issues (20)

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.