Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/admin/components/Users/Particulars/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const GET_USER = gql`
export const UPDATE_USER = gql`
mutation updateUser(
$id: ID!
$birthday: Date
$birthday: DateTime
$firstName: String!
$lastName: String!
$phoneNumber: String
Expand Down
2 changes: 1 addition & 1 deletion apps/www/components/Account/enhancers.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const userDetailsFragment = `

const mutation = gql`
mutation updateMe(
$birthday: Date
$birthday: DateTime
$firstName: String
$lastName: String
$phoneNumber: String
Expand Down
2 changes: 1 addition & 1 deletion apps/www/components/Vote/ElectionCandidacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ const cancelCandidacy = gql`
const updateCandidacy = gql`
mutation updateCandidacy(
$slug: String!
$birthday: Date
$birthday: DateTime
$statement: String
$disclosures: String
$address: AddressInput
Expand Down
2 changes: 1 addition & 1 deletion apps/www/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
/// <reference types="next/navigation-types/compat/navigation" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
// see https://nextjs.org/docs/basic-features/typescript for more information.
4 changes: 2 additions & 2 deletions packages/backend-modules/discussions/graphql/schema-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ type DiscussionTagBucket {
}

type CommentAggregation {
beginDate: Date
endDate: Date
beginDate: DateTime
endDate: DateTime
count: Int!
discussion: Discussion!
}
Expand Down
2 changes: 1 addition & 1 deletion packages/backend-modules/gsheets/graphql/schema-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type Event {
title: String
description: String
link: String
date: Date
date: DateTime
time: String
where: String
locationLink: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ input UserInput {
email: String!
firstName: String
lastName: String
birthday: Date
birthday: DateTime
phoneNumber: String
}
#input AddressInput {
Expand Down Expand Up @@ -461,8 +461,8 @@ type Users {

type PostfinancePayment {
id: ID!
buchungsdatum: Date!
valuta: Date!
buchungsdatum: DateTime!
valuta: DateTime!
konto: String!
iban: String!
avisierungstext: String!
Expand Down
10 changes: 5 additions & 5 deletions packages/backend-modules/republik/graphql/schema-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ extend type User {
properties: ImageProperties
): String

birthday: Date
birthday: DateTime
ageAccessRole: AccessRole
age: Int

Expand Down Expand Up @@ -154,8 +154,8 @@ type MembershipStats {
count: Int!
monthlys: [MonthlyMembershipStat!]!
periods(
minEndDate: Date!
maxEndDate: Date!
minEndDate: DateTime!
maxEndDate: DateTime!
# filter by membershipTypes
# default: [ABO]
membershipTypes: [String!]
Expand Down Expand Up @@ -208,7 +208,7 @@ type RoleStats {
}

type MonthlyMembershipStat {
day: Date!
day: DateTime!
newCount: Int!
renewableCount: Int!
renewedCount: Int!
Expand All @@ -226,7 +226,7 @@ type MembershipPeriodStats {
type MembershipPeriodStatsDay {
# combination: dayDate-membershipTypes
id: ID!
date: Date!
date: DateTime!
cancelCount: Int!
prolongCount: Int!
}
Expand Down
4 changes: 2 additions & 2 deletions packages/backend-modules/republik/graphql/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type mutations {

portrait: String

birthday: Date
birthday: DateTime
ageAccessRole: AccessRole

phoneNumber: String
Expand All @@ -68,7 +68,7 @@ type mutations {

address: AddressInput

birthday: Date
birthday: DateTime
phoneNumber: String

userId: ID!
Expand Down
32 changes: 0 additions & 32 deletions packages/backend-modules/scalars/graphql/resolvers/Date.js

This file was deleted.

1 change: 0 additions & 1 deletion packages/backend-modules/scalars/graphql/schema-types.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module.exports = `
scalar DateTime
scalar Date
scalar JSON
scalar StringOrNumber
scalar YearMonthDate
Expand Down
2 changes: 0 additions & 2 deletions packages/backend-modules/search/graphql/schema-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ const { getProcessorsList } = require('../lib/options')

module.exports = `

scalar Date

enum OrderDirection {
ASC
DESC
Expand Down