I made this function :
export const getAllPlayersFromUser = (user: IUser) => {
return directus.request(
readItems("player", {
filter: {
user: {
id: {
_eq: user.id,
},
},
},
fields: ["*"],
})
);
};```
But It's impossible to get deeper in the field depths and I think I cannot get some informations ๐ฆ