Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
graphql / spec / support / magic_cards / schema.graphql
Size: Mime:
type Card {
  name: String!
  printings: [Printing!]!
  expansions: [Expansion!]!
  colors: [Color!]!
  convertedManaCost: Int!
}

type Expansion {
  name: String!
  symbol: String!
  printings: [Printing!]!
  cards: [Card!]!
}

type Printing {
  card: Card!
  expansion: Expansion!
}

enum Color {
  RED
  GREEN
  BLACK
  BLUE
  WHITE
  COLORLESS
}

type Query {
  card(name: String!): Card
  expansion(symbol: String!): Expansion
}