Allow to view more than 10 drafts events on my events view

Closes #993

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2022-11-02 11:38:14 +01:00
parent a1726fc12e
commit dcfe87116e
5 changed files with 78 additions and 131 deletions

View File

@@ -205,31 +205,34 @@ export const LOGGED_USER_DRAFTS = gql`
loggedUser {
id
drafts(page: $page, limit: $limit) {
id
uuid
title
draft
picture {
total
elements {
id
url
alt
}
beginsOn
status
visibility
attributedTo {
...ActorFragment
}
organizerActor {
...ActorFragment
}
participantStats {
going
notApproved
}
options {
maximumAttendeeCapacity
remainingAttendeeCapacity
uuid
title
draft
picture {
id
url
alt
}
beginsOn
status
visibility
attributedTo {
...ActorFragment
}
organizerActor {
...ActorFragment
}
participantStats {
going
notApproved
}
options {
maximumAttendeeCapacity
remainingAttendeeCapacity
}
}
}
}