# SearchableIDFilterInput

Operator guidance:

* `eq` / `ne` — preferred for ID lookups (exact-value).
* `match` / `matchPhrase` / `matchPhrasePrefix` — only useful if the ID is tokenized (rare).
* `wildcard` / `regexp` — pattern match.
* `exists` — field present (`true`) or absent (`false`).

```
input SearchableIDFilterInput {

  ne: ID

  eq: ID

  match: ID

  matchPhrase: ID

  matchPhrasePrefix: ID

  exists: Boolean

  wildcard: ID

  regexp: ID

}
```

### Fields[​](#fields "Direct link to Fields")

#### [`SearchableIDFilterInput.ne`](#ne) ● [`ID`](https://docs.monei.com/apis/graphql/types/scalars/id/.md) scalar[​](#ne "Direct link to ne")

Not equal to.

#### [`SearchableIDFilterInput.eq`](#eq) ● [`ID`](https://docs.monei.com/apis/graphql/types/scalars/id/.md) scalar[​](#eq "Direct link to eq")

Equal to.

#### [`SearchableIDFilterInput.match`](#match) ● [`ID`](https://docs.monei.com/apis/graphql/types/scalars/id/.md) scalar[​](#match "Direct link to match")

Full-text match on tokenized terms.

#### [`SearchableIDFilterInput.matchPhrase`](#match-phrase) ● [`ID`](https://docs.monei.com/apis/graphql/types/scalars/id/.md) scalar[​](#match-phrase "Direct link to match-phrase")

Full-text phrase match.

#### [`SearchableIDFilterInput.matchPhrasePrefix`](#match-phrase-prefix) ● [`ID`](https://docs.monei.com/apis/graphql/types/scalars/id/.md) scalar[​](#match-phrase-prefix "Direct link to match-phrase-prefix")

Phrase match where the last term is treated as a prefix.

#### [`SearchableIDFilterInput.exists`](#exists) ● [`Boolean`](https://docs.monei.com/apis/graphql/types/scalars/boolean/.md) scalar[​](#exists "Direct link to exists")

Field is present (`true`) or absent (`false`).

#### [`SearchableIDFilterInput.wildcard`](#wildcard) ● [`ID`](https://docs.monei.com/apis/graphql/types/scalars/id/.md) scalar[​](#wildcard "Direct link to wildcard")

Wildcard pattern.

#### [`SearchableIDFilterInput.regexp`](#regexp) ● [`ID`](https://docs.monei.com/apis/graphql/types/scalars/id/.md) scalar[​](#regexp "Direct link to regexp")

Regular expression pattern.

### Member Of[​](#member-of "Direct link to Member Of")

[`SearchableChargeFilterInput`](https://docs.monei.com/apis/graphql/types/inputs/searchable-charge-filter-input/.md) input ● [`SearchableEventFilterInput`](https://docs.monei.com/apis/graphql/types/inputs/searchable-event-filter-input/.md) input ● [`SearchableSubscriptionFilterInput`](https://docs.monei.com/apis/graphql/types/inputs/searchable-subscription-filter-input/.md) input
