Skip to content

Commit

Permalink
browse table fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
acoffman committed Jul 25, 2024
1 parent c24e722 commit 8509b02
Show file tree
Hide file tree
Showing 6 changed files with 315 additions and 127 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,12 @@
<td
nzRight
nzAlign="right">
{{ user.statsHash.submittedEvidenceItems }}
{{ user.evidenceCount }}
</td>
<td
nzRight
nzAlign="right">
{{ user.statsHash.revisions }}
{{ user.revisionCount }}
</td>
</tr>
</ng-template>
Expand Down
85 changes: 74 additions & 11 deletions client/src/app/generated/server.model.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1399,33 +1399,96 @@ type BrowseTherapyEdge {
}

type BrowseUser {
acceptedLicense: Boolean
areaOfExpertise: String
areaOfExpertise: AreaOfExpertise
bio: String
countryId: Int
createdAt: ISO8601DateTime
deleted: Boolean
deletedAt: ISO8601DateTime
country: Country
displayName: String!
email: String
events(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String

"""
Returns the elements in the list that come before the specified cursor.
"""
before: String

"""
Returns the first _n_ elements from the list.
"""
first: Int

"""
Returns the last _n_ elements from the list.
"""
last: Int
): EventConnection!
evidenceCount: Int!
facebookProfile: String
id: Int!
lastSeenAt: ISO8601DateTime
linkedinProfile: String
mostRecentActivityTimestamp: ISO8601DateTime
mostRecentConflictOfInterestStatement: Coi
mostRecentEvent: Event
mostRecentOrganizationId: Int
name: String

"""
Filterable list of notifications for the logged in user.
"""
notifications(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String

"""
Returns the elements in the list that come before the specified cursor.
"""
before: String

"""
Filter the response to include only notifications generated by certain actions (ex: commenting).
"""
eventType: EventAction

"""
Returns the first _n_ elements from the list.
"""
first: Int

"""
Filter the response to include only notifications generated by a particular subscription.
"""
includeSeen: Boolean = false

"""
Returns the last _n_ elements from the list.
"""
last: Int

"""
Filter the response to include only notifications of a certain type (ex: mentions).
"""
notificationType: NotificationReason

"""
Filter the response to include only notifications generated by a particular subscription.
"""
subscriptionId: Int
): NotificationConnection
orcid: String
organizations: [Organization!]!
profileImagePath(size: Int = 56): String
ranks: Ranks!
revisionCount: Int!
role: String!
signupComplete: Boolean
role: UserRole!
statsHash: Stats!
twitterHandle: String
updatedAt: ISO8601DateTime
url: String
username: String
username: String!
}

"""
Expand Down
Loading

0 comments on commit 8509b02

Please sign in to comment.