MCPcopy Create free account
hub / github.com/ElementsProject/lightning / parse_executable_document

Function parse_executable_document

ccan/ccan/graphql/graphql.c:488–497  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

486}
487
488RET parse_executable_document(PARAMS) {
489 INIT(executable_document);
490 obj->first_def = parse_executable_definition(ARGS); REQ
491 struct graphql_executable_definition *p = obj->first_def;
492 do {
493 p->next_def = parse_executable_definition(ARGS);
494 p = p->next_def;
495 } WHILE_OPT;
496 EXIT;
497}
498
499RET parse_definition(PARAMS) {
500 INIT(definition);

Callers 1

graphql_parseFunction · 0.85

Calls 1

Tested by

no test coverage detected