-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ways to customize error behavior (#494)
* document getting started with vanilla svelte and vite * add config.quietQueryErrors * add onError hook * add test for onError * schema plugin shouldn't crash with failures * remove relative path hardcode * document +server support * changesets * update snapshot * tidy up PR template * add regex group * document quietQueryErrors
- Loading branch information
1 parent
74f62d0
commit 5573cfa
Showing
24 changed files
with
537 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'houdini': patch | ||
--- | ||
|
||
add onError hook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'houdini': patch | ||
--- | ||
|
||
add `quietQueryError` config value to supress all query errors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
## Will fix | ||
- # | ||
Fixes #TICKET | ||
|
||
### To help everyone out, please make sure your PR does the following: | ||
|
||
- [] Update the first line to point to the ticket that this PR fixes | ||
- [] Add a message that clearly describes the fix | ||
- [] If applicable, add a test that would fail without this fix | ||
- [] Make sure the unit and integration tests pass locally with `pnpm run tests` and `cd integration && pnpm run tests` | ||
- [] Includes a changeset if your fix affects the user with `pnpm changeset` | ||
|
||
## Some highlights | ||
- [ ] New tests are passing | ||
- [ ] | ||
- [ ] | ||
- [ ] New settings are available | ||
- [ ] | ||
- [ ] | ||
- [ ] The doc has been updated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<script lang="ts"> | ||
import type { PageData } from './$houdini'; | ||
export let data: PageData; | ||
</script> | ||
|
||
<div id="result"> | ||
{data.fancyMessage} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { graphql } from '$houdini'; | ||
import type { OnErrorEvent } from './$houdini'; | ||
|
||
export const houdini_load = graphql` | ||
query PreprocessorOnErrorTestQuery { | ||
user(id: "1000", snapshot: "preprocess-on-error-test-simple") { | ||
name | ||
} | ||
} | ||
`; | ||
|
||
export const onError = ({ error, input }: OnErrorEvent) => { | ||
return { | ||
fancyMessage: 'hello' | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { test } from '@playwright/test'; | ||
import { routes } from '../../../../lib/utils/routes.js'; | ||
import { expectToBe, goto } from '../../../../lib/utils/testsHelper.js'; | ||
|
||
test.describe('query preprocessor', () => { | ||
test('onError hook', async ({ page }) => { | ||
await goto(page, routes.Plugin_query_onError); | ||
|
||
await expectToBe(page, 'hello'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.