Skip to content

Commit 71c388b

Browse files
committed
Merge branch 'master' of https://github.com/dittos/graphql-py into overlapping-fields-can-be-merged
2 parents d07e86d + be05925 commit 71c388b

File tree

18 files changed

+1235
-83
lines changed

18 files changed

+1235
-83
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,7 @@ docs/_build/
6060
target/
6161

6262
# IntelliJ
63-
.idea
63+
.idea
64+
65+
# OS X
66+
.DS_Store

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "libgraphqlparser"]
2+
path = libgraphqlparser
3+
url = https://github.com/graphql/libgraphqlparser.git

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ install:
1111
- pip install pytest>=2.7.3 --upgrade
1212
- pip install -e .
1313
script:
14-
- py.test --cov=graphql
14+
- py.test --cov=graphql tests
1515
- flake8
1616
after_success:
1717
- coveralls

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ GraphQL implementation for Python
44

55
[![Build Status](https://travis-ci.org/dittos/graphqllib.svg?branch=master)](https://travis-ci.org/dittos/graphqllib)
66
[![Coverage Status](https://coveralls.io/repos/dittos/graphqllib/badge.svg?branch=master&service=github)](https://coveralls.io/github/dittos/graphqllib?branch=master)
7+
[![Public Slack Discussion](https://graphql-slack.herokuapp.com/badge.svg)](https://graphql-slack.herokuapp.com/)
78

89

910
## Project Status

graphql/core/execution/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def get_field_entry_key(node):
242242
class ResolveInfo(object):
243243
def __init__(self, field_name, field_asts, return_type, parent_type, context):
244244
self.field_name = field_name
245-
self.field_ast = field_asts
245+
self.field_asts = field_asts
246246
self.return_type = return_type
247247
self.parent_type = parent_type
248248
self.context = context

0 commit comments

Comments
 (0)