mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
51 lines
1.2 KiB
package graphql
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
// Time is a custom GraphQL type to represent an instant in time. It has to be added to a schema
|
|
// via "scalar Time" since it is not a predeclared GraphQL type like "ID".
|
|
type Time struct {
|
|
time.Time
|
|
}
|
|
|
|
// ImplementsGraphQLType maps this custom Go type
|
|
// to the graphql scalar type in the schema.
|
|
func (Time) ImplementsGraphQLType(name string) bool {
|
|
return name == "Time"
|
|
}
|
|
|
|
// UnmarshalGraphQL is a custom unmarshaler for Time
|
|
//
|
|
// This function will be called whenever you use the
|
|
// time scalar as an input
|
|
func (t *Time) UnmarshalGraphQL(input interface{}) error {
|
|
switch input := input.(type) {
|
|
case time.Time:
|
|
t.Time = input
|
|
return nil
|
|
case string:
|
|
var err error
|
|
t.Time, err = time.Parse(time.RFC3339, input)
|
|
return err
|
|
case int:
|
|
t.Time = time.Unix(int64(input), 0)
|
|
return nil
|
|
case float64:
|
|
t.Time = time.Unix(int64(input), 0)
|
|
return nil
|
|
default:
|
|
return fmt.Errorf("wrong type")
|
|
}
|
|
}
|
|
|
|
// MarshalJSON is a custom marshaler for Time
|
|
//
|
|
// This function will be called whenever you
|
|
// query for fields that use the Time type
|
|
func (t Time) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(t.Time)
|
|
}
|
|
|