Skip to content

Commit adff880

Browse files
committed
queries and mutations
1 parent 5132408 commit adff880

11 files changed

+107
-1
lines changed

app/GraphQL/Mutations/ApproveLink.php

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace App\GraphQL\Mutations;
4+
5+
use App\Models\Flag;
6+
7+
final class ApproveLink
8+
{
9+
/**
10+
* @param array{} $args
11+
*/
12+
public function __invoke($_, array $args)
13+
{
14+
$flag = Flag::find($args["flagId"]);
15+
$flag->delete();
16+
return true;
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
namespace App\GraphQL\Mutations;
4+
5+
use App\Models\Notification;
6+
7+
final class CreateNotification
8+
{
9+
/**
10+
* @param array{} $args
11+
*/
12+
public function __invoke($_, array $args)
13+
{
14+
$notification = Notification::create([
15+
"user_id" => $args["userId"],
16+
"message" => $args["message"]
17+
]);
18+
return $notification;
19+
}
20+
}

app/GraphQL/Mutations/MarkAsRead.php

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
namespace App\GraphQL\Mutations;
4+
5+
use App\Models\Notification;
6+
7+
final class MarkAsRead
8+
{
9+
/**
10+
* @param array{} $args
11+
*/
12+
public function __invoke($_, array $args)
13+
{
14+
$notification = Notification::find($args["notificationId"]);
15+
$notification->read = true;
16+
$notification->save();
17+
return $notification;
18+
}
19+
}

app/GraphQL/Queries/SearchTags.php

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
namespace App\GraphQL\Queries;
4+
5+
use App\Models\Tag;
6+
7+
final class SearchTags
8+
{
9+
/**
10+
* @param array{} $args
11+
*/
12+
public function __invoke($_, array $args)
13+
{
14+
$limit = 5;
15+
if(isset($args["limit"]))
16+
$limit = $args["limit"];
17+
18+
$tags = Tag::where("name", "like", "%" . $args["keyword"] . "%")->limit($limit)->get();
19+
return $tags;
20+
}
21+
}

app/Models/Notification.php

+7
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,15 @@
44

55
use Illuminate\Database\Eloquent\Factories\HasFactory;
66
use Illuminate\Database\Eloquent\Model;
7+
use Illuminate\Database\Eloquent\Relations\BelongsTo;
78

89
class Notification extends Model
910
{
1011
use HasFactory;
12+
protected $fillable = ["user_id", "message"];
13+
14+
public function user(): BelongsTo
15+
{
16+
return $this->belongsTo(User::class, "user_id");
17+
}
1118
}

app/Models/Tag.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@
88
class Tag extends Model
99
{
1010
use HasFactory;
11+
12+
protected $fillable = ["name"];
1113
}

graphql/flag.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
extend type Mutation {
22
flagLink(userId: ID!, linkId: ID!, reason: String!): Flag
33
unflagLink(id: ID! @eq): Flag @delete
4+
approveLink(flagId: ID!): Boolean
45
}

graphql/notification.graphql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
extend type Mutation {
2+
createNotification(userId: ID!, message: String!): Notification
3+
markAsRead(notificationId: ID!): Notification
4+
deleteNotification(id: ID! @eq): Notification @delete
5+
}

graphql/report.graphql

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
extend type Mutation {
22
reportLink(userId: ID!, linkId: ID!, issue: String!): Report
3+
updateReport(id: ID! @eq, issue: String!): Report @update
4+
deleteReport(id: ID! @eq): Report @delete
35
}

graphql/schema.graphql

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@
88
#import rate.graphql
99
#import flag.graphql
1010
#import report.graphql
11-
#import category.graphql
11+
#import category.graphql
12+
#import tag.graphql
13+
#import notification.graphql

graphql/tag.graphql

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
extend type Mutation {
2+
createTag(name: String!): Tag @create
3+
updateTag(id: ID! @eq, name: String!): Tag @update
4+
deleteTag(id: ID! @eq): Tag @delete
5+
}
6+
7+
extend type Query {
8+
searchTags(keyword: String!, limit: Int): [Tag]!
9+
}

0 commit comments

Comments
 (0)