limit limits

This commit is contained in:
keyan 2023-11-22 10:30:43 -06:00
parent c214d6283f
commit 80d49a7e57
9 changed files with 58 additions and 15 deletions

View File

@ -17,6 +17,7 @@ import admin from './admin'
import blockHeight from './blockHeight' import blockHeight from './blockHeight'
import image from './image' import image from './image'
import { GraphQLScalarType, Kind } from 'graphql' import { GraphQLScalarType, Kind } from 'graphql'
import { createIntScalar } from 'graphql-scalar'
const date = new GraphQLScalarType({ const date = new GraphQLScalarType({
name: 'Date', name: 'Date',
@ -45,5 +46,11 @@ const date = new GraphQLScalarType({
} }
}) })
const limit = createIntScalar({
name: 'Limit',
description: 'Limit custom scalar type',
maximum: 1000
})
export default [user, item, message, wallet, lnurl, notifications, invite, sub, export default [user, item, message, wallet, lnurl, notifications, invite, sub,
upload, search, growth, rewards, referrals, price, admin, blockHeight, image, { JSONObject }, { Date: date }] upload, search, growth, rewards, referrals, price, admin, blockHeight, image, { JSONObject }, { Date: date }, { Limit: limit }]

View File

@ -33,6 +33,7 @@ const common = gql`
scalar JSONObject scalar JSONObject
scalar Date scalar Date
scalar Limit
` `
export default [common, user, item, itemForward, message, wallet, lnurl, notifications, invite, export default [common, user, item, itemForward, message, wallet, lnurl, notifications, invite,

View File

@ -2,11 +2,11 @@ import { gql } from 'graphql-tag'
export default gql` export default gql`
extend type Query { extend type Query {
items(sub: String, sort: String, type: String, cursor: String, name: String, when: String, from: String, to: String, by: String, limit: Int): Items items(sub: String, sort: String, type: String, cursor: String, name: String, when: String, from: String, to: String, by: String, limit: Limit): Items
item(id: ID!): Item item(id: ID!): Item
pageTitleAndUnshorted(url: String!): TitleUnshorted pageTitleAndUnshorted(url: String!): TitleUnshorted
dupes(url: String!): [Item!] dupes(url: String!): [Item!]
related(cursor: String, title: String, id: ID, minMatch: String, limit: Int): Items related(cursor: String, title: String, id: ID, minMatch: String, limit: Limit): Items
search(q: String, sub: String, cursor: String, what: String, sort: String, when: String, from: String, to: String): Items search(q: String, sub: String, cursor: String, what: String, sort: String, when: String, from: String, to: String): Items
auctionPosition(sub: String, id: ID, bid: Int!): Int! auctionPosition(sub: String, id: ID, bid: Int!): Int!
itemRepetition(parentId: ID): Int! itemRepetition(parentId: ID): Int!

View File

@ -7,10 +7,10 @@ export default gql`
user(name: String!): User user(name: String!): User
users: [User!] users: [User!]
nameAvailable(name: String!): Boolean! nameAvailable(name: String!): Boolean!
topUsers(cursor: String, when: String, from: String, to: String, by: String, limit: Int): Users topUsers(cursor: String, when: String, from: String, to: String, by: String, limit: Limit): Users
topCowboys(cursor: String): Users topCowboys(cursor: String): Users
searchUsers(q: String!, limit: Int, similarity: Float): [User!]! searchUsers(q: String!, limit: Limit, similarity: Float): [User!]!
userSuggestions(q: String, limit: Int): [User!]! userSuggestions(q: String, limit: Limit): [User!]!
hasNewNotes: Boolean! hasNewNotes: Boolean!
} }

View File

@ -140,7 +140,7 @@ export const ITEM_FULL = gql`
export const RELATED_ITEMS = gql` export const RELATED_ITEMS = gql`
${ITEM_FIELDS} ${ITEM_FIELDS}
query Related($title: String, $id: ID, $cursor: String, $limit: Int) { query Related($title: String, $id: ID, $cursor: String, $limit: Limit) {
related(title: $title, id: $id, cursor: $cursor, limit: $limit) { related(title: $title, id: $id, cursor: $cursor, limit: $limit) {
cursor cursor
items { items {
@ -152,7 +152,7 @@ export const RELATED_ITEMS = gql`
export const RELATED_ITEMS_WITH_ITEM = gql` export const RELATED_ITEMS_WITH_ITEM = gql`
${ITEM_FIELDS} ${ITEM_FIELDS}
query Related($title: String, $id: ID, $cursor: String, $limit: Int) { query Related($title: String, $id: ID!, $cursor: String, $limit: Limit) {
item(id: $id) { item(id: $id) {
...ItemFields ...ItemFields
} }

View File

@ -24,7 +24,7 @@ export const SUB_ITEMS = gql`
${ITEM_FIELDS} ${ITEM_FIELDS}
${COMMENTS_ITEM_EXT_FIELDS} ${COMMENTS_ITEM_EXT_FIELDS}
query SubItems($sub: String, $sort: String, $cursor: String, $type: String, $name: String, $when: String, $from: String, $to: String, $by: String, $limit: Int, $includeComments: Boolean = false) { query SubItems($sub: String, $sort: String, $cursor: String, $type: String, $name: String, $when: String, $from: String, $to: String, $by: String, $limit: Limit, $includeComments: Boolean = false) {
sub(name: $sub) { sub(name: $sub) {
...SubFields ...SubFields
} }

View File

@ -128,7 +128,7 @@ gql`
export const USER_SUGGESTIONS = export const USER_SUGGESTIONS =
gql` gql`
query userSuggestions($q: String!, $limit: Int) { query userSuggestions($q: String!, $limit: Limit) {
userSuggestions(q: $q, limit: $limit) { userSuggestions(q: $q, limit: $limit) {
name name
} }
@ -136,7 +136,7 @@ gql`
export const USER_SEARCH = export const USER_SEARCH =
gql` gql`
query searchUsers($q: String!, $limit: Int, $similarity: Float) { query searchUsers($q: String!, $limit: Limit, $similarity: Float) {
searchUsers(q: $q, limit: $limit, similarity: $similarity) { searchUsers(q: $q, limit: $limit, similarity: $similarity) {
id id
name name
@ -173,8 +173,8 @@ export const USER_FIELDS = gql`
}` }`
export const TOP_USERS = gql` export const TOP_USERS = gql`
query TopUsers($cursor: String, $when: String, $from: String, $to: String, $by: String, $limit: Int) { query TopUsers($cursor: String, $when: String, $from: String, $to: String, $by: String, ) {
topUsers(cursor: $cursor, when: $when, from: $from, to: $to, by: $by, limit: $limit) { topUsers(cursor: $cursor, when: $when, from: $from, to: $to, by: $by) {
users { users {
id id
name name
@ -244,7 +244,7 @@ export const USER_WITH_ITEMS = gql`
${USER_FIELDS} ${USER_FIELDS}
${ITEM_FIELDS} ${ITEM_FIELDS}
${COMMENTS_ITEM_EXT_FIELDS} ${COMMENTS_ITEM_EXT_FIELDS}
query UserWithItems($name: String!, $sub: String, $cursor: String, $type: String, $when: String, $from: String, $to: String, $by: String, $limit: Int, $includeComments: Boolean = false) { query UserWithItems($name: String!, $sub: String, $cursor: String, $type: String, $when: String, $from: String, $to: String, $by: String, $limit: Limit, $includeComments: Boolean = false) {
user(name: $name) { user(name: $name) {
...UserFields ...UserFields
} }

34
package-lock.json generated
View File

@ -33,6 +33,7 @@
"formik": "^2.4.5", "formik": "^2.4.5",
"github-slugger": "^2.0.0", "github-slugger": "^2.0.0",
"graphql": "^16.8.1", "graphql": "^16.8.1",
"graphql-scalar": "^0.1.0",
"graphql-tag": "^2.12.6", "graphql-tag": "^2.12.6",
"graphql-type-json": "^0.3.2", "graphql-type-json": "^0.3.2",
"ln-service": "^57.0.1", "ln-service": "^57.0.1",
@ -7963,6 +7964,21 @@
"node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
} }
}, },
"node_modules/graphql-scalar": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/graphql-scalar/-/graphql-scalar-0.1.0.tgz",
"integrity": "sha512-eSbxcelRfFTKHiWKO6LgOPY4eWwBTtr/z9Qz6kUaX7Dmxp2F766etSNEBY6bO32yxVfXL9uuiWV40HMntm1s0w==",
"dependencies": {
"tsdef": "^0.0.14"
},
"engines": {
"node": ">=8.0.0"
},
"peerDependencies": {
"graphql": "*",
"tslib": "^1.10.0"
}
},
"node_modules/graphql-tag": { "node_modules/graphql-tag": {
"version": "2.12.6", "version": "2.12.6",
"resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz",
@ -14911,6 +14927,11 @@
"node": ">=4" "node": ">=4"
} }
}, },
"node_modules/tsdef": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/tsdef/-/tsdef-0.0.14.tgz",
"integrity": "sha512-UjMD4XKRWWFlFBfwKVQmGFT5YzW/ZaF8x6KpCDf92u9wgKeha/go3FU0e5WqDjXsCOdfiavCkfwfVHNDxRDGMA=="
},
"node_modules/tslib": { "node_modules/tslib": {
"version": "2.6.0", "version": "2.6.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz",
@ -22043,6 +22064,14 @@
"resolved": "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz", "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz",
"integrity": "sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==" "integrity": "sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw=="
}, },
"graphql-scalar": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/graphql-scalar/-/graphql-scalar-0.1.0.tgz",
"integrity": "sha512-eSbxcelRfFTKHiWKO6LgOPY4eWwBTtr/z9Qz6kUaX7Dmxp2F766etSNEBY6bO32yxVfXL9uuiWV40HMntm1s0w==",
"requires": {
"tsdef": "^0.0.14"
}
},
"graphql-tag": { "graphql-tag": {
"version": "2.12.6", "version": "2.12.6",
"resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz",
@ -26862,6 +26891,11 @@
} }
} }
}, },
"tsdef": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/tsdef/-/tsdef-0.0.14.tgz",
"integrity": "sha512-UjMD4XKRWWFlFBfwKVQmGFT5YzW/ZaF8x6KpCDf92u9wgKeha/go3FU0e5WqDjXsCOdfiavCkfwfVHNDxRDGMA=="
},
"tslib": { "tslib": {
"version": "2.6.0", "version": "2.6.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz",

View File

@ -36,6 +36,7 @@
"formik": "^2.4.5", "formik": "^2.4.5",
"github-slugger": "^2.0.0", "github-slugger": "^2.0.0",
"graphql": "^16.8.1", "graphql": "^16.8.1",
"graphql-scalar": "^0.1.0",
"graphql-tag": "^2.12.6", "graphql-tag": "^2.12.6",
"graphql-type-json": "^0.3.2", "graphql-type-json": "^0.3.2",
"ln-service": "^57.0.1", "ln-service": "^57.0.1",
@ -110,4 +111,4 @@
"eslint": "^8.51.0", "eslint": "^8.51.0",
"standard": "^17.1.0" "standard": "^17.1.0"
} }
} }