document-svg 2.0.2

Convert PDF, Word, Excel, PowerPoint, diagram and CAD files into one SVG per page, locally — a Rust library and the docsvg command
Documentation
"""Catalog GraphQL API <script>kept as text</script>"""
schema {
  query: Query
  mutation: Mutation
  subscription: Subscription
}

type Query {
  pets(limit: Int = 10): [Pet!]!
  pet(id: ID!): Pet
}

type Mutation {
  createPet(input: PetInput!): Pet!
}

type Subscription {
  petAdded: Pet!
}

interface Node {
  id: ID!
}

type Pet implements Node {
  id: ID!
  name: String!
  status: PetStatus @deprecated(reason: "use state")
}

input PetInput {
  name: String!
  tags: [String!]
}

enum PetStatus {
  ACTIVE
  ADOPTED
}

union SearchResult = Pet
scalar DateTime
directive @auth(role: String) on FIELD_DEFINITION