Documentation
¶
Index ¶
- Variables
- type File
- func (*File) Argument() graphql.FieldConfigArgument
- func (*File) Descriptor() ([]byte, []int)deprecated
- func (x *File) GetContent() []byte
- func (x *File) GetKey() string
- func (*File) Object() *graphql.Object
- func (*File) Output() graphql.Output
- func (*File) ProtoMessage()
- func (x *File) ProtoReflect() protoreflect.Message
- func (x *File) Reset()
- func (*File) Schema() map[string]interface{}
- func (x *File) String() string
- func (o *File) UnmarshalJSON(b []byte) error
- func (o *File) UnmarshalMap(values map[string]interface{})
- type Location
- func (*Location) Argument() graphql.FieldConfigArgument
- func (*Location) Descriptor() ([]byte, []int)deprecated
- func (x *Location) GetLatitude() float32
- func (x *Location) GetLongitude() float32
- func (*Location) Object() *graphql.Object
- func (*Location) Output() graphql.Output
- func (*Location) ProtoMessage()
- func (x *Location) ProtoReflect() protoreflect.Message
- func (x *Location) Reset()
- func (*Location) Schema() map[string]interface{}
- func (x *Location) String() string
- func (o *Location) UnmarshalJSON(b []byte) error
- func (o *Location) UnmarshalMap(values map[string]interface{})
Constants ¶
This section is empty.
Variables ¶
View Source
var File_Input = graphql.NewInputObject(graphql.InputObjectConfig{ Name: "File_Input", Fields: graphql.InputObjectConfigFieldMap{ "_key": &graphql.InputObjectFieldConfig{ Type: graphql.ID, }, "content": &graphql.InputObjectFieldConfig{ Type: graphql.String, }, }, })
View Source
var File_Object = graphql.NewObject(graphql.ObjectConfig{ Name: "File", Fields: graphql.Fields{ "_key": &graphql.Field{ Type: graphql.ID, }, "content": &graphql.Field{ Type: utils.Bytes, }, }, Description: "", })
View Source
var File_graphify_utils_v1_file_proto protoreflect.FileDescriptor
View Source
var File_graphify_utils_v1_geo_proto protoreflect.FileDescriptor
View Source
var Location_Input = graphql.NewInputObject(graphql.InputObjectConfig{ Name: "Location_Input", Fields: graphql.InputObjectConfigFieldMap{ "latitude": &graphql.InputObjectFieldConfig{ Type: graphql.Float, }, "longitude": &graphql.InputObjectFieldConfig{ Type: graphql.Float, }, }, })
Functions ¶
This section is empty.
Types ¶
type File ¶ added in v0.4.33
type File struct {
Key string `protobuf:"bytes,1,opt,name=_key,proto3" json:"_key,omitempty"`
Content []byte `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
// contains filtered or unexported fields
}
func (*File) Argument ¶ added in v0.4.33
func (*File) Argument() graphql.FieldConfigArgument
Argument ...
func (*File) Descriptor
deprecated
added in
v0.4.33
func (*File) GetContent ¶ added in v0.4.33
func (*File) ProtoMessage ¶ added in v0.4.33
func (*File) ProtoMessage()
func (*File) ProtoReflect ¶ added in v0.4.33
func (x *File) ProtoReflect() protoreflect.Message
func (*File) UnmarshalJSON ¶ added in v0.4.33
UnmarshalJSON ...
func (*File) UnmarshalMap ¶ added in v0.4.33
UnmarshalMap populates struct fields from a map, handling decoding for special fields.
type Location ¶
type Location struct {
Latitude float32 `protobuf:"fixed32,1,opt,name=latitude,proto3" json:"latitude,omitempty"`
Longitude float32 `protobuf:"fixed32,2,opt,name=longitude,proto3" json:"longitude,omitempty"`
// contains filtered or unexported fields
}
func (*Location) Descriptor
deprecated
func (*Location) GetLatitude ¶
func (*Location) GetLongitude ¶
func (*Location) ProtoMessage ¶
func (*Location) ProtoMessage()
func (*Location) ProtoReflect ¶
func (x *Location) ProtoReflect() protoreflect.Message
func (*Location) UnmarshalMap ¶
UnmarshalMap populates struct fields from a map, handling decoding for special fields.
Click to show internal directories.
Click to hide internal directories.