×

To be able to write in the forum you need to authenticate. Meanwhile it's read-only.

Change History

New api methods will be announced here. Changes in our data that is relevant to checkers scripts/tags will also be announced here.

Message: Re: Labcaches

Changed By: PattuX
Change Date: March 04, 2020 09:33PM

Re: Labcaches
https://project-gc.com/Challenges//46972

local finds = PGC.GetFinds(profileId, { includeLabCaches = true }) works correctly.

PGC.GetFinds(profileId, { includeLabCaches = true, fields = {'gccode', 'cache_name', 'visitdate','type', 'country'}, order = 'OLDESTFIRST', filter = filter }) however results in some backend error. Specifically, the order parameter. Without it, it works fine.
[code]
local finds = PGC.GetFinds(profileId, { includeLabCaches = true })
[/code]
works correctly.

[code]
PGC.GetFinds(profileId, { includeLabCaches = true, fields = {'gccode', 'cache_name', 'visitdate','type', 'country'}, order = 'OLDESTFIRST', filter = filter })
[/code]
however results in some backend error (see checker). Specifically, the order parameter. Without it, it works fine.

Original Message

Author: PattuX
Date: March 04, 2020 09:32PM

Re: Labcaches
https://project-gc.com/Challenges//46972

local finds = PGC.GetFinds(profileId, { includeLabCaches = true }) works correctly.

PGC.GetFinds(profileId, { includeLabCaches = true, fields = {'gccode', 'cache_name', 'visitdate','type', 'country'}, order = 'OLDESTFIRST', filter = filter }) however results in some backend error. Specifically, the order parameter. Without it, it works fine.