Skip to content

Commit 4d5bb01

Browse files
committed
New snapshots
1 parent cb9d00f commit 4d5bb01

10 files changed

Lines changed: 254 additions & 254 deletions

__tests__/integration/schema/__snapshots__/addConnectionFilterOperator.test.ts.snap

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2255,45 +2255,45 @@ input EmailDomainFilter {
22552255
"""
22562256
Not equal to the specified value, treating null like an ordinary value.
22572257
"""
2258-
distinctFrom: EmailDomain
2258+
distinctFrom: String
22592259
22602260
"""
22612261
Not equal to the specified value, treating null like an ordinary value (case-insensitive).
22622262
"""
2263-
distinctFromInsensitive: String
2263+
distinctFromInsensitive: EmailDomain
22642264
22652265
"""Ends with the specified string (case-sensitive)."""
2266-
endsWith: EmailDomain
2266+
endsWith: String
22672267
22682268
"""Ends with the specified string (case-insensitive)."""
22692269
endsWithInsensitive: EmailDomain
22702270
22712271
"""Equal to the specified value."""
2272-
equalTo: EmailDomain
2272+
equalTo: String
22732273
22742274
"""Equal to the specified value (case-insensitive)."""
2275-
equalToInsensitive: String
2275+
equalToInsensitive: EmailDomain
22762276
22772277
"""Greater than the specified value."""
2278-
greaterThan: EmailDomain
2278+
greaterThan: String
22792279
22802280
"""Greater than the specified value (case-insensitive)."""
2281-
greaterThanInsensitive: String
2281+
greaterThanInsensitive: EmailDomain
22822282
22832283
"""Greater than or equal to the specified value."""
2284-
greaterThanOrEqualTo: EmailDomain
2284+
greaterThanOrEqualTo: String
22852285
22862286
"""Greater than or equal to the specified value (case-insensitive)."""
2287-
greaterThanOrEqualToInsensitive: String
2287+
greaterThanOrEqualToInsensitive: EmailDomain
22882288
22892289
"""Included in the specified list."""
2290-
in: [EmailDomain!]
2290+
in: [String!]
22912291
22922292
"""Included in the specified list (case-insensitive)."""
2293-
inInsensitive: [String!]
2293+
inInsensitive: [EmailDomain!]
22942294
22952295
"""Contains the specified string (case-sensitive)."""
2296-
includes: EmailDomain
2296+
includes: String
22972297
22982298
"""Contains the specified string (case-insensitive)."""
22992299
includesInsensitive: EmailDomain
@@ -2304,77 +2304,77 @@ input EmailDomainFilter {
23042304
isNull: Boolean
23052305
23062306
"""Less than the specified value."""
2307-
lessThan: EmailDomain
2307+
lessThan: String
23082308
23092309
"""Less than the specified value (case-insensitive)."""
2310-
lessThanInsensitive: String
2310+
lessThanInsensitive: EmailDomain
23112311
23122312
"""Less than or equal to the specified value."""
2313-
lessThanOrEqualTo: EmailDomain
2313+
lessThanOrEqualTo: String
23142314
23152315
"""Less than or equal to the specified value (case-insensitive)."""
2316-
lessThanOrEqualToInsensitive: String
2316+
lessThanOrEqualToInsensitive: EmailDomain
23172317
23182318
"""
23192319
Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
23202320
"""
2321-
like: EmailDomain
2321+
like: String
23222322
23232323
"""
23242324
Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
23252325
"""
23262326
likeInsensitive: EmailDomain
23272327
23282328
"""Equal to the specified value, treating null like an ordinary value."""
2329-
notDistinctFrom: EmailDomain
2329+
notDistinctFrom: String
23302330
23312331
"""
23322332
Equal to the specified value, treating null like an ordinary value (case-insensitive).
23332333
"""
2334-
notDistinctFromInsensitive: String
2334+
notDistinctFromInsensitive: EmailDomain
23352335
23362336
"""Does not end with the specified string (case-sensitive)."""
2337-
notEndsWith: EmailDomain
2337+
notEndsWith: String
23382338
23392339
"""Does not end with the specified string (case-insensitive)."""
23402340
notEndsWithInsensitive: EmailDomain
23412341
23422342
"""Not equal to the specified value."""
2343-
notEqualTo: EmailDomain
2343+
notEqualTo: String
23442344
23452345
"""Not equal to the specified value (case-insensitive)."""
2346-
notEqualToInsensitive: String
2346+
notEqualToInsensitive: EmailDomain
23472347
23482348
"""Not included in the specified list."""
2349-
notIn: [EmailDomain!]
2349+
notIn: [String!]
23502350
23512351
"""Not included in the specified list (case-insensitive)."""
2352-
notInInsensitive: [String!]
2352+
notInInsensitive: [EmailDomain!]
23532353
23542354
"""Does not contain the specified string (case-sensitive)."""
2355-
notIncludes: EmailDomain
2355+
notIncludes: String
23562356
23572357
"""Does not contain the specified string (case-insensitive)."""
23582358
notIncludesInsensitive: EmailDomain
23592359
23602360
"""
23612361
Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
23622362
"""
2363-
notLike: EmailDomain
2363+
notLike: String
23642364
23652365
"""
23662366
Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
23672367
"""
23682368
notLikeInsensitive: EmailDomain
23692369
23702370
"""Does not start with the specified string (case-sensitive)."""
2371-
notStartsWith: EmailDomain
2371+
notStartsWith: String
23722372
23732373
"""Does not start with the specified string (case-insensitive)."""
23742374
notStartsWithInsensitive: EmailDomain
23752375
23762376
"""Starts with the specified string (case-sensitive)."""
2377-
startsWith: EmailDomain
2377+
startsWith: String
23782378
23792379
"""Starts with the specified string (case-insensitive)."""
23802380
startsWithInsensitive: EmailDomain

__tests__/integration/schema/__snapshots__/allowedOperators.test.ts.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1092,10 +1092,10 @@ A filter to be used against EmailDomain fields. All fields are combined with a l
10921092
"""
10931093
input EmailDomainFilter {
10941094
"""Equal to the specified value."""
1095-
equalTo: EmailDomain
1095+
equalTo: String
10961096
10971097
"""Not equal to the specified value."""
1098-
notEqualTo: EmailDomain
1098+
notEqualTo: String
10991099
}
11001100
11011101
type EnumArrayType implements Node {

__tests__/integration/schema/__snapshots__/arraysFalse.test.ts.snap

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1478,45 +1478,45 @@ input EmailDomainFilter {
14781478
"""
14791479
Not equal to the specified value, treating null like an ordinary value.
14801480
"""
1481-
distinctFrom: EmailDomain
1481+
distinctFrom: String
14821482
14831483
"""
14841484
Not equal to the specified value, treating null like an ordinary value (case-insensitive).
14851485
"""
1486-
distinctFromInsensitive: String
1486+
distinctFromInsensitive: EmailDomain
14871487
14881488
"""Ends with the specified string (case-sensitive)."""
1489-
endsWith: EmailDomain
1489+
endsWith: String
14901490
14911491
"""Ends with the specified string (case-insensitive)."""
14921492
endsWithInsensitive: EmailDomain
14931493
14941494
"""Equal to the specified value."""
1495-
equalTo: EmailDomain
1495+
equalTo: String
14961496
14971497
"""Equal to the specified value (case-insensitive)."""
1498-
equalToInsensitive: String
1498+
equalToInsensitive: EmailDomain
14991499
15001500
"""Greater than the specified value."""
1501-
greaterThan: EmailDomain
1501+
greaterThan: String
15021502
15031503
"""Greater than the specified value (case-insensitive)."""
1504-
greaterThanInsensitive: String
1504+
greaterThanInsensitive: EmailDomain
15051505
15061506
"""Greater than or equal to the specified value."""
1507-
greaterThanOrEqualTo: EmailDomain
1507+
greaterThanOrEqualTo: String
15081508
15091509
"""Greater than or equal to the specified value (case-insensitive)."""
1510-
greaterThanOrEqualToInsensitive: String
1510+
greaterThanOrEqualToInsensitive: EmailDomain
15111511
15121512
"""Included in the specified list."""
1513-
in: [EmailDomain!]
1513+
in: [String!]
15141514
15151515
"""Included in the specified list (case-insensitive)."""
1516-
inInsensitive: [String!]
1516+
inInsensitive: [EmailDomain!]
15171517
15181518
"""Contains the specified string (case-sensitive)."""
1519-
includes: EmailDomain
1519+
includes: String
15201520
15211521
"""Contains the specified string (case-insensitive)."""
15221522
includesInsensitive: EmailDomain
@@ -1527,77 +1527,77 @@ input EmailDomainFilter {
15271527
isNull: Boolean
15281528
15291529
"""Less than the specified value."""
1530-
lessThan: EmailDomain
1530+
lessThan: String
15311531
15321532
"""Less than the specified value (case-insensitive)."""
1533-
lessThanInsensitive: String
1533+
lessThanInsensitive: EmailDomain
15341534
15351535
"""Less than or equal to the specified value."""
1536-
lessThanOrEqualTo: EmailDomain
1536+
lessThanOrEqualTo: String
15371537
15381538
"""Less than or equal to the specified value (case-insensitive)."""
1539-
lessThanOrEqualToInsensitive: String
1539+
lessThanOrEqualToInsensitive: EmailDomain
15401540
15411541
"""
15421542
Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
15431543
"""
1544-
like: EmailDomain
1544+
like: String
15451545
15461546
"""
15471547
Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
15481548
"""
15491549
likeInsensitive: EmailDomain
15501550
15511551
"""Equal to the specified value, treating null like an ordinary value."""
1552-
notDistinctFrom: EmailDomain
1552+
notDistinctFrom: String
15531553
15541554
"""
15551555
Equal to the specified value, treating null like an ordinary value (case-insensitive).
15561556
"""
1557-
notDistinctFromInsensitive: String
1557+
notDistinctFromInsensitive: EmailDomain
15581558
15591559
"""Does not end with the specified string (case-sensitive)."""
1560-
notEndsWith: EmailDomain
1560+
notEndsWith: String
15611561
15621562
"""Does not end with the specified string (case-insensitive)."""
15631563
notEndsWithInsensitive: EmailDomain
15641564
15651565
"""Not equal to the specified value."""
1566-
notEqualTo: EmailDomain
1566+
notEqualTo: String
15671567
15681568
"""Not equal to the specified value (case-insensitive)."""
1569-
notEqualToInsensitive: String
1569+
notEqualToInsensitive: EmailDomain
15701570
15711571
"""Not included in the specified list."""
1572-
notIn: [EmailDomain!]
1572+
notIn: [String!]
15731573
15741574
"""Not included in the specified list (case-insensitive)."""
1575-
notInInsensitive: [String!]
1575+
notInInsensitive: [EmailDomain!]
15761576
15771577
"""Does not contain the specified string (case-sensitive)."""
1578-
notIncludes: EmailDomain
1578+
notIncludes: String
15791579
15801580
"""Does not contain the specified string (case-insensitive)."""
15811581
notIncludesInsensitive: EmailDomain
15821582
15831583
"""
15841584
Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
15851585
"""
1586-
notLike: EmailDomain
1586+
notLike: String
15871587
15881588
"""
15891589
Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
15901590
"""
15911591
notLikeInsensitive: EmailDomain
15921592
15931593
"""Does not start with the specified string (case-sensitive)."""
1594-
notStartsWith: EmailDomain
1594+
notStartsWith: String
15951595
15961596
"""Does not start with the specified string (case-insensitive)."""
15971597
notStartsWithInsensitive: EmailDomain
15981598
15991599
"""Starts with the specified string (case-sensitive)."""
1600-
startsWith: EmailDomain
1600+
startsWith: String
16011601
16021602
"""Starts with the specified string (case-insensitive)."""
16031603
startsWithInsensitive: EmailDomain

0 commit comments

Comments
 (0)