Skip to content

Commit f555797

Browse files
committed
Added signin/signup pages
1 parent 2ec2e2f commit f555797

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2912
-5286
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<network-security-config>
3+
<domain-config cleartextTrafficPermitted="true">
4+
<domain>10.0.2.2</domain>
5+
</domain-config>
6+
</network-security-config>

dataconnect/dataconnect/.dataconnect/schema/main/implicit.gql

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
extend type FavoriteActor {
2+
"""
3+
✨ Implicit foreign key field based on `FavoriteActor`.`user`. It must match the value of `User`.`id`. See `@ref` for how to customize it.
4+
"""
5+
userId: String! @fdc_generated(from: "FavoriteActor.user", purpose: IMPLICIT_REF_FIELD)
6+
"""
7+
✨ Implicit foreign key field based on `FavoriteActor`.`actor`. It must match the value of `Actor`.`id`. See `@ref` for how to customize it.
8+
"""
9+
actorId: UUID! @fdc_generated(from: "FavoriteActor.actor", purpose: IMPLICIT_REF_FIELD)
10+
}
111
extend type FavoriteMovie {
212
"""
313
✨ Implicit foreign key field based on `FavoriteMovie`.`user`. It must match the value of `User`.`id`. See `@ref` for how to customize it.
@@ -38,3 +48,13 @@ extend type Review {
3848
"""
3949
userId: String! @fdc_generated(from: "Review.user", purpose: IMPLICIT_REF_FIELD)
4050
}
51+
extend type WatchedMovie {
52+
"""
53+
✨ Implicit foreign key field based on `WatchedMovie`.`user`. It must match the value of `User`.`id`. See `@ref` for how to customize it.
54+
"""
55+
userId: String! @fdc_generated(from: "WatchedMovie.user", purpose: IMPLICIT_REF_FIELD)
56+
"""
57+
✨ Implicit foreign key field based on `WatchedMovie`.`movie`. It must match the value of `Movie`.`id`. See `@ref` for how to customize it.
58+
"""
59+
movieId: UUID! @fdc_generated(from: "WatchedMovie.movie", purpose: IMPLICIT_REF_FIELD)
60+
}

0 commit comments

Comments
 (0)