Skip to content
Merged
Changes from 2 commits
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 @@ -236,7 +236,7 @@ Accept wildcard characters: False
> Applicable: SharePoint Online

Specifies the script block of the server-side filter to apply. The type must be a valid filter name and value must be in the form `{ PropertyName <operator> "filterValue"}`. Valid operators are as follows: -eq, -ne, -like, -notlike.
Currently, you can filter by these properties: Owner, Template (can be used to filter if it is the only property present in the filter), LockState, Url.
Currently, you can filter by these properties: Owner, Template (can be used to filter if it is the only property present in the filter), LockState, Url, IsAuthoritative (It only supports comparision operators -eq and -ne. For eg: `{IsAuthoritative -eq true}`).
Comment thread
This conversation was marked as resolved.
Outdated
Comment thread
This conversation was marked as resolved.
Outdated
Comment thread
This conversation was marked as resolved.
Outdated
Using the -or operator to include an additional filter is not supported.

Note: The operator values are case-sensitive.
Expand Down Expand Up @@ -311,6 +311,24 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -IsAuthoritative

> Applicable: SharePoint Online

Filter the list of sites where the IsAuthoritative property is set to true. When IsAuthoritative is true, it signals to Microsoft Search, Copilot (BizChat), and other AI agents that the site's content is official, trusted, and verified.
Comment thread
This conversation was marked as resolved.

```yaml
Type: Boolean
Parameter Sets: ParamSet1
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Limit

> Applicable: SharePoint Online
Expand Down