2025-08-06 22:30:26 +03:00

23 lines
375 B
Go

// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
package graph
import (
"tailly_back_v2/internal/domain"
)
type ChatSession struct {
User *domain.User `json:"user"`
LastMessage *domain.Message `json:"lastMessage"`
UnreadCount int `json:"unreadCount"`
}
type Mutation struct {
}
type Query struct {
}
type Subscription struct {
}