graphql
Version:
A Query Language and Runtime which can target any service.
1 lines • 297 B
Source Map (JSON)
{"version":3,"file":"Maybe.js","sourceRoot":"","sources":["../../src/jsutils/Maybe.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * Conveniently represents flow's \"Maybe\" type https://flow.org/en/docs/types/maybe/\n *\n * @internal\n */\nexport type Maybe<T> = null | undefined | T;\n"]}