Skip to content

Commit

Permalink
Bump queries
Browse files Browse the repository at this point in the history
  • Loading branch information
mondoreale committed Oct 14, 2024
1 parent 0393e0f commit d6aced4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/generated/gql/indexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ export type Location = {
longitude: Scalars['Float']['output'];
};

export type Message = {
__typename?: 'Message';
/** JSON string if contentType is JSON, otherwise base64-encoded binary content */
content: Scalars['String']['output'];
contentType: Scalars['String']['output'];
};

export type Neighbor = {
__typename?: 'Neighbor';
nodeId1: Scalars['String']['output'];
Expand Down Expand Up @@ -59,6 +66,7 @@ export type Query = {
__typename?: 'Query';
neighbors: Neighbors;
nodes: Nodes;
sampleMessage?: Maybe<Message>;
streams: Streams;
summary: Summary;
};
Expand All @@ -81,6 +89,11 @@ export type QueryNodesArgs = {
};


export type QuerySampleMessageArgs = {
stream: Scalars['String']['input'];
};


export type QueryStreamsArgs = {
cursor?: InputMaybe<Scalars['String']['input']>;
ids?: InputMaybe<Array<Scalars['String']['input']>>;
Expand All @@ -93,6 +106,7 @@ export type QueryStreamsArgs = {

export type Stream = {
__typename?: 'Stream';
bytesPerSecond: Scalars['Float']['output'];
description?: Maybe<Scalars['String']['output']>;
id: Scalars['String']['output'];
messagesPerSecond: Scalars['Float']['output'];
Expand All @@ -102,6 +116,7 @@ export type Stream = {
};

export enum StreamOrderBy {
BytesPerSecond = 'BYTES_PER_SECOND',
Description = 'DESCRIPTION',
Id = 'ID',
MessagesPerSecond = 'MESSAGES_PER_SECOND',
Expand All @@ -118,6 +133,7 @@ export type Streams = {

export type Summary = {
__typename?: 'Summary';
bytesPerSecond: Scalars['Float']['output'];
messagesPerSecond: Scalars['Float']['output'];
nodeCount: Scalars['Int']['output'];
streamCount: Scalars['Int']['output'];
Expand Down

0 comments on commit d6aced4

Please sign in to comment.