Method: GraphitiGql::SpecHelper#gql_datetime
- Defined in:
- lib/graphiti_gql/spec_helper.rb
#gql_datetime(timestamp, precise = false) ⇒ Object
62 63 64 65 66 67 68 |
# File 'lib/graphiti_gql/spec_helper.rb', line 62 def gql_datetime(, precise = false) if precise .utc.round(10).iso8601(6) else DateTime.parse(.to_s).iso8601 end end |