Skip to content

Commit e9a6c04

Browse files
authored
fix(fdc): issue where if path was empty on web, the app crashed (#17704)
1 parent f7070f0 commit e9a6c04

File tree

6 files changed

+1040
-73
lines changed

6 files changed

+1040
-73
lines changed

packages/firebase_data_connect/firebase_data_connect/example/dataconnect/connector/queries.gql

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ query ListMovies @auth(level: USER) {
1010
}
1111
}
1212

13+
query GetMovie($key: Movie_Key!) @auth(level: USER) {
14+
movie(key: $key) {
15+
id
16+
title
17+
}
18+
}
19+
1320
# List movies by partial title match
1421
query ListMoviesByPartialTitle($input: String!) @auth(level: PUBLIC) {
1522
movies(where: { title: { contains: $input } }) {

0 commit comments

Comments
 (0)