Submit compact CIViC GraphQL requests for cancer variant interpretation schema inspection and targeted evidence retrieval. Use when a user wants concise CIViC summaries
scripts/civic_graphql.py for all CIViC GraphQL work.query_path for longer GraphQL documents instead of pasting large inline queries.query or query_pathvariables, max_items, max_depth, timeout_sec, save_raw, raw_output_path{"query":"query { __typename }"}{"query":"query { __schema { queryType { fields { name } } } }","max_items":20}ok, source, top_keys, a compact summary, and raw_output_path when save_raw=true.ok=false with error.code such as invalid_json, invalid_input, network_error, invalid_response, or graphql_error.echo '{"query":"query { __typename }"}' | python scripts/civic_graphql.py
scripts/civic_graphql.py.