This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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: | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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", |