Skip to content

Commit

Permalink
Fixing foreign key selects
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwicopple committed Jan 23, 2020
1 parent d3245de commit 7a39c85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libraries/supabase-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@supabase/supabase-js",
"version": "0.1.9",
"version": "0.1.10",
"description": "Supabase Realtime API",
"main": "./lib/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions web/docs/library/get.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ const getCountries = async () => {
.from('countries')
.select(`
name,
cities {
cities (
name
}
)
`)
return countries
} catch (error) {
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const publicRooms = await supabase
.eq('public', true)
.select(\`
name,
messages { text }
messages ( text )
\`)
`.trim()
const createExample = `
Expand Down

0 comments on commit 7a39c85

Please sign in to comment.