Filtering fields ignored inside fragments
See original GitHub issueHello guys,
I’m trying to run this query and it’s completely ignore the ‘employeeType’(or any other) filter:
{
business(id: "") {
...F2
}
}
fragment F2 on BusinessNode {
employee(employeeType:":ceo") {
edges {
node {
status
employeeType
id
}
}
}
}
On the second hand, this query works perfectly fine:
employee(employeeType:":ceo") {
edges {
node {
status
employeeType
id
}
}
}
Both of the objects(BusinessNode and EmployeeNode) are DjangoObjectType.
Thanks, Felix
Issue Analytics
- State:
- Created 7 years ago
- Reactions:5
- Comments:9 (5 by maintainers)
Top Results From Across the Web
filter option in list view fragment activity - android
hi friend i want to add search option to list view in fragment activity but i cannot access list view adapter from ...
Read more >How to Filter/Ignore? : r/EliteMiners - Reddit
You may pick up a few fragments you dont want in the beginning but you can purge those quickly. Begin mining with your...
Read more >Handling XML Fragments - Rocket Software
XML fragments are pieces of XML-encoded data in the content of elements mapped to Uniface fields. xmlsave and xmlload cannot handle them properly...
Read more >RFC 1858 - Security Considerations for IP Fragment Filtering
Abstract IP fragmentation can be used to disguise TCP packets from IP filters used in routers and hosts. This document describes two methods...
Read more >SupportMapFragment XML attributes are ignored when using ...
By swapping FragmentContainerView and fragment in the layout, I can see that with the former, cameraTargetLat , cameraTargetLng and cameraZoom are ignored and ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It doesn’t even need to be a fragment for this to happen. If you run this query on the cookbook example graphiql page you can see the bug. The filter on name is completely ignored
Same problem +1
Edit: Sorting nodes inside fragments also does not work.