-
Notifications
You must be signed in to change notification settings - Fork 219
Open
Labels
apiIssues related to the API categoryIssues related to the API categoryfeature-requestRequest a new featureRequest a new feature
Description
I have reviewed:
- https://docs.amplify.aws/swift/build-a-backend/data/custom-subscription/
- https://docs.amplify.aws/swift/build-a-backend/data/subscribe-data/
Also pulled the full Github repo looking for examples but have found none.
Would much appreciate a full example of configuring and using server-side filtering with a subscription on most simple model type, in my case defined as
Event: a
.model({
familyId: a.id().required(),
generatedByMemberId: a.id(),
generatedBy: a.belongsTo('FamilyMember', 'generatedByMemberId'),
type: a.ref('EventType').required(),
metadata: a.string().required(),
family: a.belongsTo('Family', 'familyId'),
})
In my case, I need filtering by familyId.
Thank you.
aneaga and alexgavrisco
Metadata
Metadata
Assignees
Labels
apiIssues related to the API categoryIssues related to the API categoryfeature-requestRequest a new featureRequest a new feature