fetch()
This function is used to fetch a user from the database.
Parametersβ
Parameter | Type | Required | Description |
---|---|---|---|
userId | string | β | The ID of the user. |
guildId | string | β | The guild ID of the user. |
Returnsβ
- Promise<
object
>
Example:
{
level: 1,
xp: 1000,
reqxp: 10000,
rank: 1,
shortxp: 1k,
shortreq: 10k
}
Throwsβ
new Error()
- if invalid parameters are provided.
[JS] Exampleβ
const {fetch} = require('simply-xp');
const userId = "326815959358898189";
const guildId = "867999056172052551";
fetch(userId, guildId)
.then(console.log) // Returns the user object
.catch((err) => console.log(err)); // Returns the error