Sha256: 19d7d902429a23bbbecce7a673fe85f1d9613a5076497ca9234212b40bc199f1

Contents?: true

Size: 434 Bytes

Versions: 63

Compression:

Stored size: 434 Bytes

Contents

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
}

Version data entries

63 entries across 63 versions & 1 rubygems

Version Path
graphql-1.8.18 spec/support/magic_cards/schema.graphql
graphql-1.9.11 spec/support/magic_cards/schema.graphql
graphql-1.9.10 spec/support/magic_cards/schema.graphql
graphql-1.9.9 spec/support/magic_cards/schema.graphql
graphql-1.9.8 spec/support/magic_cards/schema.graphql
graphql-1.9.7 spec/support/magic_cards/schema.graphql
graphql-1.9.6 spec/support/magic_cards/schema.graphql
graphql-1.9.5 spec/support/magic_cards/schema.graphql
graphql-1.9.4 spec/support/magic_cards/schema.graphql
graphql-1.9.3 spec/support/magic_cards/schema.graphql
graphql-1.9.2 spec/support/magic_cards/schema.graphql
graphql-1.8.17 spec/support/magic_cards/schema.graphql
graphql-1.8.16 spec/support/magic_cards/schema.graphql
graphql-1.9.1 spec/support/magic_cards/schema.graphql
graphql-1.9.0 spec/support/magic_cards/schema.graphql
graphql-1.8.15 spec/support/magic_cards/schema.graphql
graphql-1.9.0.pre4 spec/support/magic_cards/schema.graphql
graphql-1.8.14 spec/support/magic_cards/schema.graphql
graphql-1.9.0.pre3 spec/support/magic_cards/schema.graphql
graphql-1.9.0.pre2 spec/support/magic_cards/schema.graphql