Skip to content

v1.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 24 Jan 20:49
· 7 commits to main since this release
cdfaddc

Graphman now properly supports UNION types.
It will fill operations bodies with each union type to produce an output like:

query myUnionQuery {
  myUnionQuery {
     __typename
     ...on UnionType1 {
       __typename
       scalar,
       # object
     }
     ...on UnionType2 {
       __typename
       scalar,
       # object
     }
  }
}