Skip to content

Commit 9bd6c3b

Browse files
chore(deps): bump lodash from 4.17.20 to 4.17.21 (#736)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Benjie Gillam <benjie@jemjie.com>
1 parent 06ffce5 commit 9bd6c3b

17 files changed

Lines changed: 2519 additions & 2519 deletions

packages/postgraphile-core/__tests__/integration/schema/__snapshots__/defaultOptions.test.js.snap

Lines changed: 552 additions & 552 deletions
Large diffs are not rendered by default.

packages/postgraphile-core/__tests__/integration/schema/__snapshots__/disabledTagsNoLegacyRelations.test.js.snap

Lines changed: 78 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
exports[`prints a schema without parsing tags and with legacy relations omitted 1`] = `
44
enum AnEnum {
5-
_ASTERISK_BAR_
6-
_ASTERISK_BAZ_ASTERISK_
7-
_FOO_ASTERISK
85
ASTERISK
96
ASTERISK_ASTERISK
107
ASTERISK_ASTERISK_ASTERISK
@@ -20,6 +17,9 @@ enum AnEnum {
2017
PERCENT
2118
PUBLISHED
2219
REJECTED
20+
_ASTERISK_BAR_
21+
_ASTERISK_BAZ_ASTERISK_
22+
_FOO_ASTERISK
2323
}
2424
2525
scalar AnInt
@@ -979,16 +979,16 @@ enum EdgeCasesOrderBy {
979979
scalar Email
980980
981981
enum EnumCaps {
982-
_0_BAR
983982
BAR_FOO
984983
BAZ_QUX
985984
FOO_BAR
985+
_0_BAR
986986
}
987987
988988
enum EnumWithEmptyString {
989-
_EMPTY_
990989
ONE
991990
TWO
991+
_EMPTY_
992992
}
993993
994994
"""
@@ -1183,36 +1183,6 @@ type FuncReturnsTableOneColEdge {
11831183
node: Int
11841184
}
11851185
1186-
"""An IPv4 or IPv6 host address, and optionally its subnet."""
1187-
scalar InternetAddress
1188-
1189-
"""
1190-
An interval of time that has passed where the smallest distinct unit is a second.
1191-
"""
1192-
type Interval {
1193-
"""A quantity of days."""
1194-
days: Int
1195-
1196-
"""A quantity of hours."""
1197-
hours: Int
1198-
1199-
"""A quantity of minutes."""
1200-
minutes: Int
1201-
1202-
"""A quantity of months."""
1203-
months: Int
1204-
1205-
"""
1206-
A quantity of seconds. This is the only non-integer field, as all the other
1207-
fields will dump their overflow into a smaller unit of time. Intervals dont
1208-
have a smaller unit than seconds.
1209-
"""
1210-
seconds: Float
1211-
1212-
"""A quantity of years."""
1213-
years: Int
1214-
}
1215-
12161186
"""All input for the \`intSetMutation\` mutation."""
12171187
input IntSetMutationInput {
12181188
"""
@@ -1263,6 +1233,36 @@ type IntSetQueryEdge {
12631233
node: Int
12641234
}
12651235
1236+
"""An IPv4 or IPv6 host address, and optionally its subnet."""
1237+
scalar InternetAddress
1238+
1239+
"""
1240+
An interval of time that has passed where the smallest distinct unit is a second.
1241+
"""
1242+
type Interval {
1243+
"""A quantity of days."""
1244+
days: Int
1245+
1246+
"""A quantity of hours."""
1247+
hours: Int
1248+
1249+
"""A quantity of minutes."""
1250+
minutes: Int
1251+
1252+
"""A quantity of months."""
1253+
months: Int
1254+
1255+
"""
1256+
A quantity of seconds. This is the only non-integer field, as all the other
1257+
fields will dump their overflow into a smaller unit of time. Intervals dont
1258+
have a smaller unit than seconds.
1259+
"""
1260+
seconds: Float
1261+
1262+
"""A quantity of years."""
1263+
years: Int
1264+
}
1265+
12661266
type Issue756 implements Node {
12671267
id: Int!
12681268
@@ -1355,6 +1355,17 @@ type Issue756SEdge {
13551355
node: Issue756!
13561356
}
13571357
1358+
"""Methods to use when ordering \`Issue756\`."""
1359+
enum Issue756SOrderBy {
1360+
ID_ASC
1361+
ID_DESC
1362+
NATURAL
1363+
PRIMARY_KEY_ASC
1364+
PRIMARY_KEY_DESC
1365+
TS_ASC
1366+
TS_DESC
1367+
}
1368+
13581369
"""All input for the \`issue756SetMutation\` mutation."""
13591370
input Issue756SetMutationInput {
13601371
"""
@@ -1379,24 +1390,13 @@ type Issue756SetMutationPayload {
13791390
query: Query
13801391
}
13811392
1382-
"""Methods to use when ordering \`Issue756\`."""
1383-
enum Issue756SOrderBy {
1384-
ID_ASC
1385-
ID_DESC
1386-
NATURAL
1387-
PRIMARY_KEY_ASC
1388-
PRIMARY_KEY_DESC
1389-
TS_ASC
1390-
TS_DESC
1391-
}
1392-
13931393
"""
13941394
A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
13951395
"""
13961396
scalar JSON
13971397
1398-
"""All input for the \`jsonbIdentityMutation\` mutation."""
1399-
input JsonbIdentityMutationInput {
1398+
"""All input for the \`jsonIdentityMutation\` mutation."""
1399+
input JsonIdentityMutationInput {
14001400
"""
14011401
An arbitrary string value with no semantic meaning. Will be included in the
14021402
payload verbatim. May be used to track mutations by the client.
@@ -1405,8 +1405,8 @@ input JsonbIdentityMutationInput {
14051405
json: JSON
14061406
}
14071407
1408-
"""The output of our \`jsonbIdentityMutation\` mutation."""
1409-
type JsonbIdentityMutationPayload {
1408+
"""The output of our \`jsonIdentityMutation\` mutation."""
1409+
type JsonIdentityMutationPayload {
14101410
"""
14111411
The exact same \`clientMutationId\` that was provided in the mutation input,
14121412
unchanged and unused. May be used by a client to track mutations.
@@ -1420,19 +1420,18 @@ type JsonbIdentityMutationPayload {
14201420
query: Query
14211421
}
14221422
1423-
"""All input for the \`jsonbIdentityMutationPlpgsql\` mutation."""
1424-
input JsonbIdentityMutationPlpgsqlInput {
1425-
_theJson: JSON!
1426-
1423+
"""All input for the \`jsonbIdentityMutation\` mutation."""
1424+
input JsonbIdentityMutationInput {
14271425
"""
14281426
An arbitrary string value with no semantic meaning. Will be included in the
14291427
payload verbatim. May be used to track mutations by the client.
14301428
"""
14311429
clientMutationId: String
1430+
json: JSON
14321431
}
14331432
1434-
"""The output of our \`jsonbIdentityMutationPlpgsql\` mutation."""
1435-
type JsonbIdentityMutationPlpgsqlPayload {
1433+
"""The output of our \`jsonbIdentityMutation\` mutation."""
1434+
type JsonbIdentityMutationPayload {
14361435
"""
14371436
The exact same \`clientMutationId\` that was provided in the mutation input,
14381437
unchanged and unused. May be used by a client to track mutations.
@@ -1446,9 +1445,9 @@ type JsonbIdentityMutationPlpgsqlPayload {
14461445
query: Query
14471446
}
14481447
1449-
"""All input for the \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation."""
1450-
input JsonbIdentityMutationPlpgsqlWithDefaultInput {
1451-
_theJson: JSON
1448+
"""All input for the \`jsonbIdentityMutationPlpgsql\` mutation."""
1449+
input JsonbIdentityMutationPlpgsqlInput {
1450+
_theJson: JSON!
14521451
14531452
"""
14541453
An arbitrary string value with no semantic meaning. Will be included in the
@@ -1457,8 +1456,8 @@ input JsonbIdentityMutationPlpgsqlWithDefaultInput {
14571456
clientMutationId: String
14581457
}
14591458
1460-
"""The output of our \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation."""
1461-
type JsonbIdentityMutationPlpgsqlWithDefaultPayload {
1459+
"""The output of our \`jsonbIdentityMutationPlpgsql\` mutation."""
1460+
type JsonbIdentityMutationPlpgsqlPayload {
14621461
"""
14631462
The exact same \`clientMutationId\` that was provided in the mutation input,
14641463
unchanged and unused. May be used by a client to track mutations.
@@ -1472,18 +1471,19 @@ type JsonbIdentityMutationPlpgsqlWithDefaultPayload {
14721471
query: Query
14731472
}
14741473
1475-
"""All input for the \`jsonIdentityMutation\` mutation."""
1476-
input JsonIdentityMutationInput {
1474+
"""All input for the \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation."""
1475+
input JsonbIdentityMutationPlpgsqlWithDefaultInput {
1476+
_theJson: JSON
1477+
14771478
"""
14781479
An arbitrary string value with no semantic meaning. Will be included in the
14791480
payload verbatim. May be used to track mutations by the client.
14801481
"""
14811482
clientMutationId: String
1482-
json: JSON
14831483
}
14841484
1485-
"""The output of our \`jsonIdentityMutation\` mutation."""
1486-
type JsonIdentityMutationPayload {
1485+
"""The output of our \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation."""
1486+
type JsonbIdentityMutationPlpgsqlWithDefaultPayload {
14871487
"""
14881488
The exact same \`clientMutationId\` that was provided in the mutation input,
14891489
unchanged and unused. May be used by a client to track mutations.
@@ -1841,6 +1841,12 @@ type Mutation {
18411841
"""
18421842
input: Issue756SetMutationInput!
18431843
): Issue756SetMutationPayload
1844+
jsonIdentityMutation(
1845+
"""
1846+
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
1847+
"""
1848+
input: JsonIdentityMutationInput!
1849+
): JsonIdentityMutationPayload
18441850
jsonbIdentityMutation(
18451851
"""
18461852
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
@@ -1859,12 +1865,6 @@ type Mutation {
18591865
"""
18601866
input: JsonbIdentityMutationPlpgsqlWithDefaultInput!
18611867
): JsonbIdentityMutationPlpgsqlWithDefaultPayload
1862-
jsonIdentityMutation(
1863-
"""
1864-
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
1865-
"""
1866-
input: JsonIdentityMutationInput!
1867-
): JsonIdentityMutationPayload
18681868
18691869
"""
18701870
@arg0variant base
@@ -3681,8 +3681,8 @@ type Query implements Node {
36813681
nodeId: ID!
36823682
): Issue756
36833683
issue756ById(id: Int!): Issue756
3684-
jsonbIdentity(json: JSON): JSON
36853684
jsonIdentity(json: JSON): JSON
3685+
jsonbIdentity(json: JSON): JSON
36863686
36873687
"""Reads a single \`LeftArm\` using its globally unique \`ID\`."""
36883688
leftArm(
@@ -4040,6 +4040,11 @@ type TypesMutationPayload {
40404040
query: Query
40414041
}
40424042
4043+
"""
4044+
A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122).
4045+
"""
4046+
scalar UUID
4047+
40434048
"""All input for the \`updateCompoundKeyByPersonId1AndPersonId2\` mutation."""
40444049
input UpdateCompoundKeyByPersonId1AndPersonId2Input {
40454050
"""
@@ -4484,11 +4489,6 @@ type UpdatePersonSecretPayload {
44844489
query: Query
44854490
}
44864491
4487-
"""
4488-
A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122).
4489-
"""
4490-
scalar UUID
4491-
44924492
type WrappedUrl {
44934493
url: NotNullUrl!
44944494
}

0 commit comments

Comments
 (0)