-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fix/graphql #181
Fix/graphql #181
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
может сделаем сразу нормальный лог для ошибок чтобы за каждым запросом так не гоняться?
для каждого запроса в этой странице сделать по аналогии с этим? |
Нет - у тебя же в логах типовой объект ошибки apollo. Но в нем не видны объекты по понятным причинам. Надо это исправить |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ты по прежнему выводишь в лог результаты всех квери, а надо подходить глобально. Добавим новый квери - придется добавлять и в твой новый метод.
https://www.apollographql.com/docs/apollo-server/data/errors
@Nelfimov сделал по этой документации - https://www.apollographql.com/docs/react/data/error-handling#advanced-error-handling-with-apollo-link |
|
||
if (graphQLErrors) { | ||
graphQLErrors.forEach(({ message, locations, path, extensions }) => { | ||
console.log(`[GraphQL error]: Message: ${message}`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
debug
или error
будет правильнее
add log to debug #178
судя по вот этому ^ полю ошибка в конкретном запросе. на него и повесил лог