public static string JsonToQueryString(string json) { CosmosDbStructure structure = JsonToGremlinLoader.GraphsonToObject(json); string commands = StructureToQueryString(structure); return(commands); }
public static List <string> JsonToQueryList(string json) { CosmosDbStructure structure = JsonToGremlinLoader.GraphsonToObject(json); List <string> commands = StructureToQueryList(structure); return(commands); }