query PaginateQueuedSolveNotifications(
  $uuid: Uuid!,
  $last: SolveNotificationLimit!,
  $before: Cursor
) {
  queuedSolve(uuid: $uuid) {
    notifications(last: $last, before: $before) {
      edges {
        node {
          ...FullSolveNotification
        }
      }
      pageInfo {
        ...FullPageInfo
      }
      totalCount
    }
  }
}
