Added page and limit arguments to StashDB fingerprint import tool.
This commit is contained in:
parent
314c43bcda
commit
fd8a2c346b
|
|
@ -145,9 +145,9 @@ async function init() {
|
|||
operationName: 'Scenes',
|
||||
query,
|
||||
variables: {
|
||||
limit: 1000,
|
||||
limit: Number(args.limit) || 1000,
|
||||
studioId: args.studioId,
|
||||
page: 1,
|
||||
page: Number(args.page) || 1,
|
||||
},
|
||||
}, {
|
||||
headers: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue