vod frog, frog with the vods
5
fork

Configure Feed

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

fix creator video query: use 'eq' not 'equalTo' per GraphQL schema

+1 -1
+1 -1
src/lib/api.ts
··· 139 139 export async function listVideosByCreator(creatorDid: string): Promise<VideoRecord[]> { 140 140 const query = ` 141 141 query GetVideosByCreator($creatorDid: String!) { 142 - placeStreamVideo(first: 50, where: { creator: { equalTo: $creatorDid } }) { 142 + placeStreamVideo(first: 50, where: { creator: { eq: $creatorDid } }) { 143 143 edges { 144 144 node { 145 145 uri