Methodological note: This document presents a descriptive narrative synthesis of 55 studies included in the scoping review. All statistics are computed directly from the structured data extraction database (popfluids2.csv). R code is visible via the Show R code toggles. Place popfluids2.csv in your RStudio working directory before rendering.
1 General Characteristics of Included Studies
This narrative synthesis presents a descriptive analysis of the 55 studies included in a scoping review examining intravenous fluid management in the perioperative care of paediatric patients undergoing non-cardiac surgery. The available evidence spans four decades, with publications ranging from 1984 to 2024; approximately 74% of studies were published from 2010 onwards, reflecting a progressively growing interest in standardising and optimising fluid therapy practices in the paediatric surgical setting.
Table 1: Distribution of included studies by study design.
Study Design
n
%
Randomised Controlled Trial
44
80.0%
Cohort Study
9
16.4%
Other Design
2
3.6%
Randomised controlled trials (RCTs) predominated, accounting for 44 of the 55 included studies (80.0%). The preponderance of RCTs represents a methodologically favourable characteristic of the available evidence base; nevertheless, heterogeneity in evaluated outcomes and enrolled populations substantially limits direct cross-study comparability.
Show R code
df |>filter(!is.na(design_label)) |>count(design_label) |>mutate(design_label =fct_reorder(design_label, n)) |>ggplot(aes(x = n, y = design_label, fill = design_label)) +geom_col(width =0.6, show.legend =FALSE) +geom_text(aes(label =glue("{n} ({percent(n / n_total, accuracy = 0.1)})")),hjust =-0.1, size =3.5, colour ="grey30") +scale_fill_manual(values = pal_main[1:3]) +scale_x_continuous(expand =expansion(mult =c(0, 0.22))) +labs(x ="Number of studies", y =NULL,title ="Study designs across included publications",caption =glue("N = {n_total} studies")) +theme_review()
Figure 1: Distribution of included studies by study design.
1.2 Publication Trends
Show R code
df |>filter(!is.na(year_n), year_n >1980) |>count(year_n) |>ggplot(aes(x = year_n, y = n)) +geom_col(fill = pal_main[1], alpha =0.85, width =0.8) +geom_smooth(aes(group =1), method ="loess", se =TRUE,colour = pal_main[3], fill = pal_main[3], alpha =0.15,linewidth =0.8) +scale_x_continuous(breaks =seq(1984, 2024, 4)) +scale_y_continuous(breaks =0:6) +labs(x ="Publication year", y ="Number of studies",title ="Publication trends across included studies (1984–2024)",caption ="Loess smoothing curve displayed; shaded band = 95% confidence interval") +theme_review() +theme(panel.grid.major.y =element_line(colour ="grey90"))
Figure 2: Annual distribution of included studies by publication year.
Figure 4: Funding status and protocol registration across included studies.
Of the 55 included studies, 22 (40.0%) declared funding from an institutional, governmental, or industry source. Only 21 (38.2%) had a registered and publicly accessible protocol, representing a potential reporting bias risk that should be considered when interpreting findings.
Table 5: Paediatric age groups represented across included studies.
Age Group
n
%
Neonate (0–28 days)
12
21.8%
Young infant (1–12 months)
37
67.3%
Older infant (1–2 years)
34
61.8%
Preschool child (2–5 years)
35
63.6%
School-aged child (6–10 years)
31
56.4%
Pre-adolescent (11–12 years)
27
49.1%
Adolescent (13–18 years)
18
32.7%
Studies enrolling multiple age groups are counted in each respective category.
The most frequently represented category was young infants (1–12 months), included in 37 studies (67.3%). Neonates (0–28 days) constituted the least frequently included group (12 studies; 21.8%), representing a critical evidence gap given their heightened physiological vulnerability.
Show R code
age_df |>mutate(`Age Group`=fct_reorder(`Age Group`, n)) |>ggplot(aes(x = n, y =`Age Group`, fill =`Age Group`)) +geom_col(width =0.65, show.legend =FALSE) +geom_text(aes(label =glue("{n} ({`%`})")),hjust =-0.1, size =3.3, colour ="grey30") +scale_fill_manual(values =colorRampPalette(c(pal_seq[2], pal_main[1]))(7)) +scale_x_continuous(expand =expansion(mult =c(0, 0.22))) +labs(x ="Number of studies", y =NULL,title ="Paediatric age groups represented in included studies",caption =glue("N = {n_total} studies; a study may include multiple age groups")) +theme_review()
Figure 6: Frequency of paediatric age groups across included studies.
Table 7: Surgical urgency classification across included studies.
Surgical Context
n
%
Planned (> 1 month)
37
67.3%
Unknown / unclear
7
12.7%
Elective priority (weeks)
4
7.3%
Urgent (< 24 hours)
4
7.3%
Semi-urgent (days)
3
5.5%
Show R code
df |>filter(!is.na(context_label)) |>count(context_label) |>mutate(context_label =fct_reorder(context_label, n)) |>ggplot(aes(x = n, y = context_label, fill = n)) +geom_col(width =0.65, show.legend =FALSE) +geom_text(aes(label =glue("{n} ({percent(n / n_total, accuracy = 1)})")),hjust =-0.1, size =3.3, colour ="grey30") +scale_fill_gradient(low = pal_seq[2], high = pal_main[1]) +scale_x_continuous(expand =expansion(mult =c(0, 0.25))) +labs(x ="Number of studies", y =NULL,title ="Surgical urgency classification") +theme_review()
Figure 7: Surgical urgency context across included studies.
The large majority of studies (37 studies; 67.3%) were conducted in planned or elective surgical settings, substantially limiting the generalisability of findings to urgent and emergency contexts.
Table 8: Types of surgical procedure included across studies.
Surgery Type
n
%
Other
21
38.2%
Open abdominal surgery
16
29.1%
Neurosurgery (craniotomy / spinal)
12
21.8%
Maxillofacial surgery
9
16.4%
Multiple/unspecified types
9
16.4%
Laparoscopic abdominal surgery
7
12.7%
Thoracic surgery
7
12.7%
Otorhinolaryngology
6
10.9%
Orthopaedic surgery
6
10.9%
Organ transplantation
3
5.5%
A single study may include more than one procedure type.
Show R code
surg_df |>mutate(`Surgery Type`=fct_reorder(`Surgery Type`, n)) |>ggplot(aes(x = n, y =`Surgery Type`, fill = n)) +geom_col(width =0.65, show.legend =FALSE) +geom_text(aes(label =glue("{n} ({`%`})")),hjust =-0.1, size =3.2, colour ="grey30") +scale_fill_gradient(low = pal_seq[2], high = pal_main[1]) +scale_x_continuous(expand =expansion(mult =c(0, 0.25))) +labs(x ="Number of studies", y =NULL,title ="Types of surgical procedures represented",caption ="A single study may report more than one procedure type") +theme_review()
Figure 8: Types of surgical procedures across included studies.
4 Types of Intravenous Fluids Used
A notable strength of this scoping review is the diversity of intravenous fluid types evaluated, encompassing unbalanced crystalloids, balanced crystalloids, dextrose-containing combined solutions, and both natural and synthetic colloids.
Table 9: Intravenous fluid types by study group (intervention vs. control).
Fluid types across intervention and control groups
Fluid Type
Intervention Group
Control Group
Intervention (n)
Int. %
Control (n)
Ctrl. %
Normal saline 0.9%
7
12.7%
10
18.2%
Semi-isotonic 0.45%
3
5.5%
6
10.9%
Quarter-isotonic
0
0.0%
0
0.0%
Balanced: Hartmann's solution
3
5.5%
3
5.5%
Balanced: Lactated Ringer's
12
21.8%
17
30.9%
Balanced: Plasma-Lyte
3
5.5%
2
3.6%
Combined crystalloid-dextrose
6
10.9%
14
25.5%
Natural colloid (albumin)
2
3.6%
3
5.5%
Synthetic colloid
6
10.9%
5
9.1%
Other
21
38.2%
13
23.6%
A single study may include more than one fluid type.
Show R code
fluid_df |>select(`Fluid Type`, `Intervention (n)`, `Control (n)`) |>pivot_longer(-`Fluid Type`, names_to ="Group", values_to ="n") |>mutate(Group =recode(Group,"Intervention (n)"="Intervention","Control (n)"="Control" ),`Fluid Type`=fct_reorder(`Fluid Type`, n, .fun = sum) ) |>ggplot(aes(x = n, y =`Fluid Type`, fill = Group)) +geom_col(position =position_dodge(width =0.7), width =0.6) +geom_text(aes(label = n),position =position_dodge(width =0.7),hjust =-0.3, size =3, colour ="grey30") +scale_fill_manual(values =c("Intervention"= pal_main[1], "Control"= pal_main[3])) +scale_x_continuous(expand =expansion(mult =c(0, 0.2))) +labs(x ="Number of studies", y =NULL, fill ="Group",title ="Intravenous fluid types: intervention vs. control groups",caption ="A single study may include more than one fluid type") +theme_review()
Figure 9: Comparative frequency of fluid types in intervention and control groups.
Lactated Ringer’s solution was the most frequently evaluated balanced crystalloid — used as the intervention fluid in 12 studies and as the control in 17. Normal saline 0.9% served most often as a control comparator (10 studies). Combined crystalloid-dextrose solutions were especially prevalent in control groups (14 studies), underscoring their role as the conventional maintenance standard in infants and neonates.
Table 10: Perioperative phase of fluid administration.
Phase
n
%
Preoperative
15
27.3%
Intraoperative
51
92.7%
Postoperative
22
40.0%
Not specified
1
1.8%
Show R code
timing_df |>mutate(Phase =fct_reorder(Phase, n)) |>ggplot(aes(x = n, y = Phase, fill = Phase)) +geom_col(width =0.6, show.legend =FALSE) +geom_text(aes(label =glue("{n} ({`%`})")),hjust =-0.1, size =3.5, colour ="grey30") +scale_fill_manual(values =c(pal_main[1], pal_main[2], pal_main[3], "grey70")) +scale_x_continuous(expand =expansion(mult =c(0, 0.22))) +labs(x ="Number of studies", y =NULL,title ="Perioperative phase of fluid administration",caption ="A single study may report administration across multiple phases") +theme_review()
Figure 10: Perioperative phase of fluid administration across included studies.
The intraoperative phase was the most extensively studied period (51 of 55 studies; 92.7%). Postoperative and preoperative phases were evaluated in 22 and 15 studies respectively, representing important evidence gaps.
Figure 14: Co-occurrence matrix of the six most frequently reported outcomes.
7 Narrative Synthesis
7.1 Electrolyte Disturbances and Acid-Base Homeostasis
Electrolyte disturbances were the most frequently evaluated outcome domain (35 studies; 63.6%), with particular emphasis on serum sodium, chloride, and potassium concentrations. Hyponatraemia emerged as a consistent concern across studies comparing hypotonic and isotonic maintenance fluids in the postoperative setting: hypotonic solutions were systematically associated with a higher risk of symptomatic and asymptomatic hyponatraemia, whilst isotonic or mildly hyperosmolar solutions carried a greater risk of hypernatraemia and hyperchloraemia.
Acid-base homeostasis was evaluated in 33 studies (60.0%) and demonstrated systematic differences between balanced and unbalanced crystalloids. Administration of normal saline 0.9% was consistently associated with a higher incidence of hyperchloraemic metabolic acidosis — characterised by declining serum bicarbonate, negative base excess, and elevated plasma chloride — an effect considerably attenuated with Lactated Ringer’s and largely absent with Plasma-Lyte.
7.2 Glycaemic Status
Perioperative glycaemic management was a central clinical concern in studies enrolling neonates and young infants. Hypoglycaemia was evaluated in 22 studies and hyperglycaemia in 21. Evidence from included studies suggests that the addition of dextrose at concentrations of 1–2% to maintenance fluids can effectively prevent intraoperative hypoglycaemia without significantly increasing hyperglycaemia. Higher dextrose concentrations (≥5%) were associated with hyperglycaemic episodes carrying potential adverse consequences for wound healing and cerebral function.
7.3 Haemodynamic Stability and Renal Function
Haemodynamic stability was evaluated in 26 studies (47.3%). The different fluid types evaluated generally did not demonstrate clinically meaningful differences in intraoperative haemodynamic stability when administered in appropriate volumes. In settings characterised by significant blood loss, colloids demonstrated superior short-term efficacy for rapid volume expansion, though with recognised long-term adverse effects.
Acute kidney injury was evaluated in 14 studies (25.5%). Balanced crystalloids demonstrated a more favourable renal safety profile compared with NS 0.9%, primarily through attenuation of hyperchloraemia-mediated renal vasoconstriction. Studies comparing synthetic colloids — particularly hydroxyethyl starches — with crystalloids reported, in some instances, a higher incidence of AKI with starch-based solutions.
7.4 Length of Stay Outcomes
Show R code
tibble(Outcome =c("Length of hospital stay", "Length of ICU stay"),n =c(sum(df$outcomes___12, na.rm =TRUE),sum(df$outcomes___13, na.rm =TRUE) )) |>mutate(pct =percent(n / n_total, accuracy =1)) |>ggplot(aes(x = n, y = Outcome, fill = Outcome)) +geom_col(width =0.45, show.legend =FALSE) +geom_text(aes(label =glue("{n} studies ({pct})")),hjust =-0.1, size =3.5, colour ="grey30") +scale_fill_manual(values =c(pal_main[2], pal_main[1])) +scale_x_continuous(expand =expansion(mult =c(0, 0.5)),limits =c(0, 20)) +labs(x ="Number of studies", y =NULL,title ="Length-of-stay outcomes in included studies") +theme_review()
Figure 15: Proportion of studies reporting length-of-stay outcomes.
Length of hospital stay was evaluated in only 5 studies (9.1%) and ICU stay in 7 studies (12.7%). This limited representation constitutes a significant evidence gap, given the important implications of fluid optimisation for postoperative recovery trajectories and healthcare resource utilisation.
8 Evidence Gaps and Implications for Future Research
Figure 16: Summary dashboard of key evidence characteristics and identified gaps.
The analysis of the 55 included studies reveals several significant evidence gaps:
Neonatal population. Neonates were included in only 12 studies (21.8%), despite representing the most physiologically vulnerable group. Their renal immaturity, heightened susceptibility to hypoglycaemia, and immature sodium homeostatic mechanisms necessitate age-specific protocols that the current literature cannot adequately support.
Emergency and urgent contexts. Only 4 studies were conducted in patients requiring urgent or emergency surgical intervention — a near-total evidence absence with clinically consequential implications.
Outcome heterogeneity. The absence of validated, standardised Core Outcome Sets (COS) for evaluating perioperative fluid therapy in paediatric populations impedes cross-study comparison and the synthesis of evidence into actionable clinical recommendations.
Limited long-term follow-up. Only 4 studies maintained follow-up beyond seven days. Effects on health-related quality of life, functional recovery, and delayed complication rates remain largely uncharacterised.
Geographic imbalance. The large majority of evidence originates from high-complexity tertiary centres in high-income countries, limiting generalisability to resource-constrained settings where fluid availability and clinical contexts differ markedly.
9 Conclusions
The evidence synthesised across 55 included studies reflects a progressively expanding field of inquiry. The predominance of randomised controlled trials (44/55; 80.0%) provides a methodologically sound foundation for comparative analyses, albeit consistently limited sample sizes constrain statistical power.
Balanced crystalloids — most notably Lactated Ringer’s solution — emerge as physiologically superior to normal saline 0.9% with respect to acid-base preservation and hyperchloraemia prevention. Dextrose-containing combined solutions remain clinically indispensable for neonates and young infants, though optimal concentration and infusion rate require further investigation. Colloids occupy a defined niche for acute volume expansion in haemodynamically compromised patients, but lack robust evidence for routine use in elective paediatric surgery.
The intraoperative phase is the best-characterised period; preoperative and postoperative fluid management represent domains with substantially more limited evidence. Future studies with adequate sample sizes, prolonged follow-up, standardised outcomes, inclusive enrolment criteria, and representation of emergency contexts are urgently needed to generate evidence-based guidelines applicable across the full spectrum of paediatric non-cardiac surgery.