Packages

An elixir interface for libgraphqlparser implemented as a NIF for parsing GraphQL.

Current section

Files

Jump to
graphql_parser libgraphqlparser c GraphQLAstNode.h
Raw

libgraphqlparser/c/GraphQLAstNode.h

/**
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/* Opaque type representing a generic AST node. */
struct GraphQLAstNode;
/* A location in the AST. */
struct GraphQLAstLocation {
unsigned int beginLine;
unsigned int beginColumn;
unsigned int endLine;
unsigned int endColumn;
};
/* Fills location with location information for the given node. */
void graphql_node_get_location(const struct GraphQLAstNode *node,
struct GraphQLAstLocation *location);
void graphql_node_free(struct GraphQLAstNode *node);
#ifdef __cplusplus
}
#endif