Skip to content

Commit

Permalink
Bluesky in Contact Component
Browse files Browse the repository at this point in the history
  • Loading branch information
azinazadi committed Dec 20, 2023
1 parent dbceeac commit 5c30915
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions exports/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,7 @@ input ComponentSharedBlocksActionsInput {
}

type ComponentSharedBlocksContact {
bluesky: String
email: String
facebook: String
id: ID!
Expand All @@ -523,6 +524,7 @@ type ComponentSharedBlocksContact {

input ComponentSharedBlocksContactFiltersInput {
and: [ComponentSharedBlocksContactFiltersInput]
bluesky: StringFilterInput
email: StringFilterInput
facebook: StringFilterInput
instagram: StringFilterInput
Expand All @@ -535,6 +537,7 @@ input ComponentSharedBlocksContactFiltersInput {
}

input ComponentSharedBlocksContactInput {
bluesky: String
email: String
facebook: String
id: ID
Expand Down
5 changes: 5 additions & 0 deletions exports/graphql/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ export interface NexusGenInputs {
}
ComponentSharedBlocksContactFiltersInput: { // input type
and?: Array<NexusGenInputs['ComponentSharedBlocksContactFiltersInput'] | null> | null; // [ComponentSharedBlocksContactFiltersInput]
bluesky?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput
email?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput
facebook?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput
instagram?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput
Expand All @@ -310,6 +311,7 @@ export interface NexusGenInputs {
youtube?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput
}
ComponentSharedBlocksContactInput: { // input type
bluesky?: string | null; // String
email?: string | null; // String
facebook?: string | null; // String
id?: string | null; // ID
Expand Down Expand Up @@ -1240,6 +1242,7 @@ export interface NexusGenObjects {
show_map: boolean; // Boolean!
}
ComponentSharedBlocksContact: { // root type
bluesky?: string | null; // String
email?: string | null; // String
facebook?: string | null; // String
id: string; // ID!
Expand Down Expand Up @@ -1727,6 +1730,7 @@ export interface NexusGenFieldTypes {
show_map: boolean; // Boolean!
}
ComponentSharedBlocksContact: { // field return type
bluesky: string | null; // String
email: string | null; // String
facebook: string | null; // String
id: string; // ID!
Expand Down Expand Up @@ -2508,6 +2512,7 @@ export interface NexusGenFieldTypeNames {
show_map: 'Boolean'
}
ComponentSharedBlocksContact: { // field return type name
bluesky: 'String'
email: 'String'
facebook: 'String'
id: 'ID'
Expand Down
3 changes: 3 additions & 0 deletions src/components/shared-blocks/contact.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
},
"mastodon": {
"type": "string"
},
"bluesky": {
"type": "string"
}
}
}

0 comments on commit 5c30915

Please sign in to comment.