All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m34s
Auth-protected CRUD for personal info (LinkedIn, GitHub, etc.) and experience entries, stored in the database so nothing sensitive is in the public repo. Displayed as a categorized panel on the Job Applications page. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
360 B
GraphQL
24 lines
360 B
GraphQL
type JobAppReference {
|
|
id: ID!
|
|
createdAt: Time!
|
|
updatedAt: Time!
|
|
category: String!
|
|
label: String!
|
|
value: String!
|
|
sortOrder: Int!
|
|
}
|
|
|
|
input CreateJobAppReferenceInput {
|
|
category: String!
|
|
label: String!
|
|
value: String!
|
|
sortOrder: Int
|
|
}
|
|
|
|
input UpdateJobAppReferenceInput {
|
|
category: String
|
|
label: String
|
|
value: String
|
|
sortOrder: Int
|
|
}
|