Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

philihp/goonql

Repository files navigation

GoonQL

This is a GraphQL interface to curated subset of the EVE SDE for things that I care about.

query ($typeID: ID!) {
  type(typeID: $typeID) {
    typeID
    typeName
    builtBy {
      typeName
      manufacture {
        materials {
          type {
            typeName
          }
          quantity
        }
        products {
          type {
            typeID
            typeName
          }
          quantity
        }
      }
    }
    usedIn(first: 40, after: "1") {
      typeID
      typeName
      manufacture {
        materials {
          type {
            typeName
          }
          quantity
        }
        products {
          type {
            typeName
          }
          quantity
        }
      }
    }
  }
}

Try it out