mirror of
https://github.com/foss42/apidash.git
synced 2025-12-02 18:57:05 +08:00
10 lines
242 B
Dart
10 lines
242 B
Dart
import '../consts.dart';
|
|
import '../models/models.dart';
|
|
|
|
String? getGraphQLBody(HttpRequestModel httpRequestModel) {
|
|
if (httpRequestModel.hasQuery) {
|
|
return kJsonEncoder.convert({"query": httpRequestModel.query});
|
|
}
|
|
return null;
|
|
}
|