All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m47s
Replace hardcoded bookmarks in the frontend with a GORM-backed Bookmark model exposed through GraphQL query and admin-only create/delete mutations. Frontend groups bookmarks by category dynamically from the store. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
201 B
GraphQL
15 lines
201 B
GraphQL
type Bookmark {
|
|
id: ID!
|
|
createdAt: Time!
|
|
updatedAt: Time!
|
|
category: String!
|
|
name: String!
|
|
link: String!
|
|
}
|
|
|
|
input CreateBookmarkInput {
|
|
category: String!
|
|
name: String!
|
|
link: String!
|
|
}
|