Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(structure): add DocumentListBuilder.filter JSdoc details #7402

Merged
merged 2 commits into from
Aug 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export class DocumentListBuilder extends GenericListBuilder<
}

/** Set Document list filter
* @param filter - filter
* @param filter - GROQ-filter used to determine which documents to display. Do not support joins, since they operate on individual documents, and will ignore order-clauses and projections. See https://www.sanity.io/docs/realtime-updates
pedrobonamin marked this conversation as resolved.
Show resolved Hide resolved
* @returns document list builder based on the options and filter provided. See {@link DocumentListBuilder}
*/
filter(filter: string): DocumentListBuilder {
Expand Down
Loading