Skip to content
Closed
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Upcoming

- `apollo`
- <First `apollo` related entry goes here>
- Fix tabular output for unrecognized errors [#1745](https://github.com/apollographql/apollo-tooling/pull/1745)
- `apollo-codegen-flow`
- <First `apollo-codegen-flow` related entry goes here>
- `apollo-codegen-scala`
Expand Down
6 changes: 5 additions & 1 deletion packages/apollo/src/commands/service/check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,11 @@ export default class ServiceCheck extends ProjectCommand {
table(
[
["Service", "Field", "Message"],
...compositionErrors.map(Object.values)
...compositionErrors.map(({ service, field, message }) => [
service,
field,
message
])
],
{
columns: {
Expand Down