From 63d9108567a81d4777f031044dbaf65017d7a139 Mon Sep 17 00:00:00 2001 From: Groups Date: Tue, 4 Apr 2017 23:34:16 +0300 Subject: [PATCH] added support for parsing schema --- graphql.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphql.c b/graphql.c index 23313a6..57d0eba 100644 --- a/graphql.c +++ b/graphql.c @@ -44,7 +44,7 @@ PHP_METHOD(Parser, parse) return; } - ast = graphql_parse_string(input, &error); + ast = graphql_parse_string_with_experimental_schema_support(input, &error); if (ast == NULL) { #if PHP_VERSION_ID < 50505