Skip to content

Commit 410b80e

Browse files
zxcvbnmmohdgithub-actions[bot]
authored andcommitted
cd: post amplify push | run number 29
1 parent 23473b3 commit 410b80e

File tree

2 files changed

+232
-8
lines changed

2 files changed

+232
-8
lines changed

amplify/team-provider-info.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -25,38 +25,38 @@
2525
"EMAILSUBJECT": "Confirm your account",
2626
"EMAILMESSAGE": "Tap the link to confirm your account.",
2727
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
28-
"s3Key": "amplify-builds/RukuAuthCustomMessage-386871365852376a7a6a-build.zip"
28+
"s3Key": "amplify-builds/RukuAuthCustomMessage-56433977674156417a6e-build.zip"
2929
},
3030
"RukuAuthPostAuthentication": {
3131
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
32-
"s3Key": "amplify-builds/RukuAuthPostAuthentication-47596750366b2b543948-build.zip"
32+
"s3Key": "amplify-builds/RukuAuthPostAuthentication-5975666554614f666954-build.zip"
3333
},
3434
"RukuAuthPostConfirmation": {
3535
"GROUP": "Jamaah",
3636
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
37-
"s3Key": "amplify-builds/RukuAuthPostConfirmation-624c616f356f47305168-build.zip"
37+
"s3Key": "amplify-builds/RukuAuthPostConfirmation-382f4b5a596d4c324134-build.zip"
3838
},
3939
"RukuAuthPreAuthentication": {
4040
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
41-
"s3Key": "amplify-builds/RukuAuthPreAuthentication-79657970537a5036644f-build.zip"
41+
"s3Key": "amplify-builds/RukuAuthPreAuthentication-336a754f446a75654831-build.zip"
4242
},
4343
"RukuAuthPreSignup": {
4444
"DOMAINALLOWLIST": " ",
4545
"DOMAINDENYLIST": " ",
4646
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
47-
"s3Key": "amplify-builds/RukuAuthPreSignup-5a475151393862576f42-build.zip"
47+
"s3Key": "amplify-builds/RukuAuthPreSignup-6a7046544634432b5448-build.zip"
4848
},
4949
"RukuAPILambdaAuthorizer": {
5050
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
51-
"s3Key": "amplify-builds/RukuAPILambdaAuthorizer-5a6a337a6a6b4e6d5470-build.zip"
51+
"s3Key": "amplify-builds/RukuAPILambdaAuthorizer-5978575a302f55583965-build.zip"
5252
},
5353
"RukuStorageTrigger": {
5454
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
55-
"s3Key": "amplify-builds/RukuStorageTrigger-3066616b382f4952686b-build.zip"
55+
"s3Key": "amplify-builds/RukuStorageTrigger-6b6d732b4c3254502f74-build.zip"
5656
},
5757
"AdminQueriesa8865030": {
5858
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",
59-
"s3Key": "amplify-builds/AdminQueriesa8865030-58476439746235386777-build.zip"
59+
"s3Key": "amplify-builds/AdminQueriesa8865030-7235554f305048653979-build.zip"
6060
},
6161
"rukuCommonLayerTs": {
6262
"deploymentBucketName": "amplify-ruku-dev-192339-deployment",

src/graphql/queries.graphql

+224
Original file line numberDiff line numberDiff line change
@@ -3041,6 +3041,230 @@ query OrganizationsByCreatorID(
30413041
}
30423042
}
30433043

3044+
query GetUser($id: ID!) {
3045+
getUser(id: $id) {
3046+
id
3047+
selfie
3048+
firstName
3049+
lastName
3050+
email
3051+
phone
3052+
type
3053+
status
3054+
stripeCustomerId
3055+
isOnline
3056+
bookmarks {
3057+
items {
3058+
id
3059+
announcementID
3060+
creatorID
3061+
mosqueID
3062+
createdAt
3063+
updatedAt
3064+
owner
3065+
__typename
3066+
}
3067+
nextToken
3068+
__typename
3069+
}
3070+
comments {
3071+
items {
3072+
id
3073+
text
3074+
parentCommentID
3075+
announcementID
3076+
creatorID
3077+
mosqueID
3078+
createdAt
3079+
updatedAt
3080+
owner
3081+
__typename
3082+
}
3083+
nextToken
3084+
__typename
3085+
}
3086+
createdAnnouncements {
3087+
items {
3088+
id
3089+
type
3090+
content
3091+
images
3092+
creatorID
3093+
mosqueID
3094+
createdAt
3095+
updatedAt
3096+
owner
3097+
__typename
3098+
}
3099+
nextToken
3100+
__typename
3101+
}
3102+
createdFundraisingCampaigns {
3103+
items {
3104+
id
3105+
title
3106+
description
3107+
featureImage
3108+
type
3109+
currentAmount
3110+
goal
3111+
goalDate
3112+
currency
3113+
creatorID
3114+
mosqueID
3115+
createdAt
3116+
updatedAt
3117+
owners
3118+
owner
3119+
__typename
3120+
}
3121+
nextToken
3122+
__typename
3123+
}
3124+
createdPrayerTimes {
3125+
items {
3126+
id
3127+
startDate
3128+
timeZone
3129+
createdByUserID
3130+
updatedByUserID
3131+
mosqueID
3132+
createdAt
3133+
updatedAt
3134+
owners
3135+
owner
3136+
__typename
3137+
}
3138+
nextToken
3139+
__typename
3140+
}
3141+
createdOrganizations {
3142+
items {
3143+
id
3144+
name
3145+
description
3146+
domain
3147+
logo
3148+
phone
3149+
email
3150+
website
3151+
isVerified
3152+
creatorID
3153+
createdAt
3154+
updatedAt
3155+
owners
3156+
owner
3157+
__typename
3158+
}
3159+
nextToken
3160+
__typename
3161+
}
3162+
createdMosques {
3163+
items {
3164+
id
3165+
name
3166+
description
3167+
images
3168+
address
3169+
latitude
3170+
longitude
3171+
phone
3172+
email
3173+
website
3174+
isVerified
3175+
creatorID
3176+
organizationID
3177+
createdAt
3178+
updatedAt
3179+
owners
3180+
owner
3181+
__typename
3182+
}
3183+
nextToken
3184+
__typename
3185+
}
3186+
donations {
3187+
items {
3188+
id
3189+
amount
3190+
currency
3191+
isAnonymous
3192+
donorID
3193+
fundraisingCampaignID
3194+
createdAt
3195+
updatedAt
3196+
owner
3197+
__typename
3198+
}
3199+
nextToken
3200+
__typename
3201+
}
3202+
mosques {
3203+
items {
3204+
id
3205+
mosqueId
3206+
userId
3207+
createdAt
3208+
updatedAt
3209+
owners
3210+
owner
3211+
__typename
3212+
}
3213+
nextToken
3214+
__typename
3215+
}
3216+
organizations {
3217+
items {
3218+
id
3219+
organizationId
3220+
userId
3221+
createdAt
3222+
updatedAt
3223+
owners
3224+
owner
3225+
__typename
3226+
}
3227+
nextToken
3228+
__typename
3229+
}
3230+
likes {
3231+
items {
3232+
id
3233+
announcementID
3234+
creatorID
3235+
mosqueID
3236+
createdAt
3237+
updatedAt
3238+
owner
3239+
__typename
3240+
}
3241+
nextToken
3242+
__typename
3243+
}
3244+
updatedPrayerTimes {
3245+
items {
3246+
id
3247+
startDate
3248+
timeZone
3249+
createdByUserID
3250+
updatedByUserID
3251+
mosqueID
3252+
createdAt
3253+
updatedAt
3254+
owners
3255+
owner
3256+
__typename
3257+
}
3258+
nextToken
3259+
__typename
3260+
}
3261+
createdAt
3262+
updatedAt
3263+
owner
3264+
__typename
3265+
}
3266+
}
3267+
30443268
query GetMosqueFollower($id: ID!) {
30453269
getMosqueFollower(id: $id) {
30463270
id

0 commit comments

Comments
 (0)