Skip to content

Commit

Permalink
Added signin/signup pages
Browse files Browse the repository at this point in the history
  • Loading branch information
maneesht committed Nov 14, 2024
1 parent 2ec2e2f commit f555797
Show file tree
Hide file tree
Showing 42 changed files with 2,912 additions and 5,286 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain>10.0.2.2</domain>
</domain-config>
</network-security-config>
20 changes: 20 additions & 0 deletions dataconnect/dataconnect/.dataconnect/schema/main/implicit.gql
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
extend type FavoriteActor {
"""
✨ Implicit foreign key field based on `FavoriteActor`.`user`. It must match the value of `User`.`id`. See `@ref` for how to customize it.
"""
userId: String! @fdc_generated(from: "FavoriteActor.user", purpose: IMPLICIT_REF_FIELD)
"""
✨ Implicit foreign key field based on `FavoriteActor`.`actor`. It must match the value of `Actor`.`id`. See `@ref` for how to customize it.
"""
actorId: UUID! @fdc_generated(from: "FavoriteActor.actor", purpose: IMPLICIT_REF_FIELD)
}
extend type FavoriteMovie {
"""
✨ Implicit foreign key field based on `FavoriteMovie`.`user`. It must match the value of `User`.`id`. See `@ref` for how to customize it.
Expand Down Expand Up @@ -38,3 +48,13 @@ extend type Review {
"""
userId: String! @fdc_generated(from: "Review.user", purpose: IMPLICIT_REF_FIELD)
}
extend type WatchedMovie {
"""
✨ Implicit foreign key field based on `WatchedMovie`.`user`. It must match the value of `User`.`id`. See `@ref` for how to customize it.
"""
userId: String! @fdc_generated(from: "WatchedMovie.user", purpose: IMPLICIT_REF_FIELD)
"""
✨ Implicit foreign key field based on `WatchedMovie`.`movie`. It must match the value of `Movie`.`id`. See `@ref` for how to customize it.
"""
movieId: UUID! @fdc_generated(from: "WatchedMovie.movie", purpose: IMPLICIT_REF_FIELD)
}
Loading

0 comments on commit f555797

Please sign in to comment.