Add minLength = 1 for quote in highlight

This commit is contained in:
Hongbo Wu
2023-03-10 15:40:31 +08:00
parent 2e197644d4
commit 45a857152b
5 changed files with 25 additions and 14 deletions

View File

@ -4062,6 +4062,7 @@ export type ResolversParentTypes = {
export type SanitizeDirectiveArgs = {
allowedTags?: Maybe<Array<Maybe<Scalars['String']>>>;
maxLength?: Maybe<Scalars['Int']>;
minLength?: Maybe<Scalars['Int']>;
pattern?: Maybe<Scalars['String']>;
};