Skip to content

Instantly share code, notes, and snippets.

View pgollangi's full-sized avatar

Prasanna Kumar pgollangi

View GitHub Profile
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"meta": {
"version": "v1.0.0",
"canonical": "https://github.com/jsonresume/resume-schema/blob/v1.0.0/schema.json",
"theme": "full",
"hideReferences": true
},
"basics": {
"name": "Prasanna Kumar Gollangi",
"""
Python script that converts GraphQL query to dictionary using graphql-core python package
"""
from graphql import parse
from graphql.language import ast
def node_to_dict(node: ast.Node) -> dict:
"""