-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from detroitledger/32-filter-org-grants
filter org grants
- Loading branch information
Showing
17 changed files
with
1,696 additions
and
873 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
export const query = ` | ||
query orgNameLike { | ||
organizations(nameLike: "%organization 9%", limit: 11) { | ||
name | ||
} | ||
} | ||
`; | ||
|
||
export const expected = { | ||
data: { | ||
organizations: [ | ||
{ name: 'test organization 9' }, | ||
{ name: 'test organization 90' }, | ||
{ name: 'test organization 91' }, | ||
{ name: 'test organization 92' }, | ||
{ name: 'test organization 93' }, | ||
{ name: 'test organization 94' }, | ||
{ name: 'test organization 95' }, | ||
{ name: 'test organization 96' }, | ||
{ name: 'test organization 97' }, | ||
{ name: 'test organization 98' }, | ||
{ name: 'test organization 99' }, | ||
], | ||
}, | ||
}; |
Oops, something went wrong.