Skip to content

GraphQL Type System Definition to a config yaml #12

@mcg-web

Description

@mcg-web

Add a feature that convert GraphQL Type System Definition:

interface Character {
  id: String!
  name: String
  friends: [Character]
  appearsIn: [Episode]
}

to config yaml file:

Character:
    type: interface
    config:
        fields:
            id:
                type: "String!"
            name:
                type: "String"
            friends:
                type: "[Character]"
            appearsIn:
                type: "[Episode]"

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions