WIP PWA for Grain
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: use lowercase 'or' in GraphQL filter

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+1 -1
+1 -1
src/services/grain-api.js
··· 105 105 socialGrainGallery( 106 106 first: $first 107 107 after: $after 108 - where: { OR: [{ title: { contains: $query } }, { description: { contains: $query } }] } 108 + where: { or: [{ title: { contains: $query } }, { description: { contains: $query } }] } 109 109 sortBy: [{ field: createdAt, direction: DESC }] 110 110 ) { 111 111 edges {