Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove series and transferring body objects #1037

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions src/main/graphql/GetConsignmentExport.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,8 @@ query getConsignmentForExport($consignmentId: UUID!) {
consignmentReference
consignmentType
includeTopLevelFolder
series {
code
}
transferringBody {
name
}
seriesName
transferringBodyName
files {
fileId
fileType
Expand Down
6 changes: 2 additions & 4 deletions src/main/graphql/GetConsignmentStatus.graphql
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
query getConsignmentStatus($consignmentId: UUID!) {
getConsignment(consignmentid: $consignmentId) {
series {
seriesid
code
}
seriesid
seriesName
consignmentStatuses {
consignmentStatusId
consignmentId
Expand Down
10 changes: 3 additions & 7 deletions src/main/graphql/GetConsignmentSummary.graphql
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
query getConsignmentSummary($consignmentId: UUID!) {
getConsignment(consignmentid: $consignmentId) {
series {
code
},
transferringBody {
name
}
totalFiles,
seriesName
transferringBodyName
totalFiles
consignmentReference
}
}
Loading