I want to save resume information as json into dgraph database based on my defined schema which is very similar to the structure of the json, but without the need to give the same structure in the mutation or create a map from schema to json in mutation. Is there a way to do the above
{
"ContactInformation": {
"CandidateName": {
"FormattedName": "Dev Test",
"GivenName": "Dev",
"FamilyName": "Dev"
},
"Telephones": [
{
"Raw": "404-663-1274",
"Normalized": "+1 404-663-1274",
"InternationalCountryCode": "1",
"AreaCityCode": "404",
"SubscriberNumber": "45-1274"
}
],
"EmailAddresses": [
"dev@mail.com"
],
"WebAddresses": [
{
"Address": "https://www.linkedin.com/in/dev_test",
"Type": "LinkedIn"
}
]
}
}