diff --git a/app/graph/types/project_media_type.rb b/app/graph/types/project_media_type.rb index df165d8ac6..4e999a8095 100644 --- a/app/graph/types/project_media_type.rb +++ b/app/graph/types/project_media_type.rb @@ -19,6 +19,7 @@ class ProjectMediaType < DefaultObject field :description, GraphQL::Types::String, null: true field :picture, GraphQL::Types::String, null: true field :virality, GraphQL::Types::Int, null: true + field :fact_check_published_on, GraphQL::Types::Int, null: true field :requests_count, GraphQL::Types::Int, null: true field :demand, GraphQL::Types::Int, null: true field :linked_items_count, GraphQL::Types::Int, null: true diff --git a/lib/relay.idl b/lib/relay.idl index d87e82c146..806e05e3cc 100644 --- a/lib/relay.idl +++ b/lib/relay.idl @@ -469,7 +469,7 @@ type ApiKey implements Node { expire_at: String id: ID! permissions: String - team: PublicTeam + team: Team team_id: Int title: String updated_at: String @@ -11364,6 +11364,7 @@ type ProjectMedia implements Node { """ last: Int ): DynamicConnection + fact_check_published_on: Int feed_columns_values: JsonStringType field_value(annotation_type_field_name: String!): String flags( diff --git a/public/relay.json b/public/relay.json index a93b33b0f4..e69599cb62 100644 --- a/public/relay.json +++ b/public/relay.json @@ -2167,7 +2167,7 @@ ], "type": { "kind": "OBJECT", - "name": "PublicTeam", + "name": "Team", "ofType": null }, "isDeprecated": false, @@ -59720,6 +59720,20 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "fact_check_published_on", + "description": null, + "args": [ + + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "feed_columns_values", "description": null,