Skip to content

Commit

Permalink
fix(limit): fix limitation of response (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
thanh-nguyen-dang authored and philloooo committed Aug 8, 2017
1 parent c56a087 commit 63f9fd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ let Submission = Relay.createContainer(
fragments: {
viewer: () => Relay.QL`
fragment on viewer {
project {
project (first: 10000) {
project_id
code
}
Expand Down
2 changes: 1 addition & 1 deletion src/queryactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const fetchProjects = () => {
return fetchWrapper({
path: submissionapi_path + 'graphql',
body: JSON.stringify({
'query': "query Test { project(first:100) {code, project_id}}"
'query': "query Test { project(first:10000) {code, project_id}}"
}),
method: 'POST',
handler: receiveProjects
Expand Down

0 comments on commit 63f9fd6

Please sign in to comment.